diff options
-rw-r--r-- | src/github/daneren2005/dsub/util/FileUtil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/util/FileUtil.java b/src/github/daneren2005/dsub/util/FileUtil.java index 304541b6..6c116dce 100644 --- a/src/github/daneren2005/dsub/util/FileUtil.java +++ b/src/github/daneren2005/dsub/util/FileUtil.java @@ -619,7 +619,7 @@ public class FileUtil { Log.w(TAG, "No serialization for object from " + fileName); return null; } catch (Throwable x) { - Log.w(TAG, "Failed to deserialize object from " + fileName, x); + Log.w(TAG, "Failed to deserialize object from " + fileName); return null; } finally { Util.close(in); @@ -659,7 +659,7 @@ public class FileUtil { Log.w(TAG, "No serialization compressed for object from " + fileName); return null; } catch (Throwable x) { - Log.w(TAG, "Failed to deserialize compressed object from " + fileName, x); + Log.w(TAG, "Failed to deserialize compressed object from " + fileName); return null; } finally { Util.close(in); |