Cleaned up error logging

This commit is contained in:
nathan 2014-09-05 03:36:22 +02:00
parent 1677d9c08a
commit 104bae8187
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ public class Storage {
Object readObject = this.kryo.readObject(input, clazz);
return (T) readObject;
} catch (Exception e) {
logger.error("Error reading from '{}'! Perhaps the file is corrupt?", file.getAbsolutePath(), e);
logger.error("Error reading from '{}'! Perhaps the file is corrupt?", file.getAbsolutePath());
return null;
} finally {
if (input != null) {