From 104bae8187bc6e6ca210680d5cd502482ea03562 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 5 Sep 2014 03:36:22 +0200 Subject: [PATCH] Cleaned up error logging --- Dorkbox-Util/src/dorkbox/util/Storage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {