From 38086bb11e3db63ddea8a9805f813d21668d7e8f Mon Sep 17 00:00:00 2001 From: amwaterhouse Date: Fri, 19 Aug 2005 08:49:28 +0000 Subject: [PATCH] System.out if error setting properties --- src/jalview/bin/Cache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jalview/bin/Cache.java b/src/jalview/bin/Cache.java index 7f714e5..480bf5d 100755 --- a/src/jalview/bin/Cache.java +++ b/src/jalview/bin/Cache.java @@ -237,7 +237,7 @@ public class Cache out.close(); } catch (Exception ex) - { } + { System.out.println("Error setting property: "+key+" "+obj+"\n"+ex); } return obj; } @@ -250,6 +250,6 @@ public class Cache out.close(); } catch (Exception ex) - { } + { System.out.println("Error saving properties: "+ex); } } } -- 1.7.10.2