From: amwaterhouse Date: Fri, 19 Aug 2005 08:49:28 +0000 (+0000) Subject: System.out if error setting properties X-Git-Tag: Release_2_04~37 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=38086bb11e3db63ddea8a9805f813d21668d7e8f;p=jalview.git System.out if error setting properties --- 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); } } }