diff --git a/Dorkbox-Util/src/dorkbox/util/Storage.java b/Dorkbox-Util/src/dorkbox/util/Storage.java index 43e0bab..2085826 100644 --- a/Dorkbox-Util/src/dorkbox/util/Storage.java +++ b/Dorkbox-Util/src/dorkbox/util/Storage.java @@ -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) {