From 98a42524d42353e058a3f71e5be11b242f43e88c Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Thu, 21 Aug 2014 10:32:44 -0700 Subject: Remove stack trace from deserialization, never usable anyways --- src/github/daneren2005/dsub/util/FileUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/github/daneren2005') 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); -- cgit v1.2.3