From: James Procter Date: Wed, 20 Sep 2023 15:42:28 +0000 (+0100) Subject: JAL-4195 JAL-1069 JAL-4160 errors in Cache should go to Console.stderr X-Git-Tag: Release_2_11_3_0~8^2~9 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=e282451a1f29b46bdf9cf6489081e68f1deaade8;p=jalview.git JAL-4195 JAL-1069 JAL-4160 errors in Cache should go to Console.stderr --- diff --git a/src/jalview/bin/Cache.java b/src/jalview/bin/Cache.java index 9266d2a..1abb171 100755 --- a/src/jalview/bin/Cache.java +++ b/src/jalview/bin/Cache.java @@ -589,7 +589,7 @@ public class Cache { if (!Jalview.quiet()) { - jalview.bin.Console.outPrintln( + jalview.bin.Console.errPrintln( "Non-fatal exception when checking version at " + remoteBuildPropertiesUrl + ":"); jalview.bin.Console.printStackTrace(ex); @@ -792,7 +792,7 @@ public class Cache } catch (NumberFormatException e) { if (!Jalview.quiet()) - jalview.bin.Console.outPrintln("Error parsing int property '" + jalview.bin.Console.errPrintln("Error parsing int property '" + property + "' with value '" + string + "'"); } } @@ -811,7 +811,7 @@ public class Cache } catch (NumberFormatException e) { if (!Jalview.quiet()) - jalview.bin.Console.outPrintln("Error parsing float property '" + jalview.bin.Console.errPrintln("Error parsing float property '" + property + "' with value '" + string + "'"); } } @@ -862,7 +862,7 @@ public class Cache } catch (Exception ex) { if (!Jalview.quiet()) - jalview.bin.Console.outPrintln( + jalview.bin.Console.errPrintln( "Error setting property: " + key + " " + obj + "\n" + ex); } return oldValue; @@ -894,7 +894,7 @@ public class Cache } catch (Exception ex) { if (!Jalview.quiet()) - jalview.bin.Console.outPrintln("Error saving properties: " + ex); + jalview.bin.Console.errPrintln("Error saving properties: " + ex); } } }