From e282451a1f29b46bdf9cf6489081e68f1deaade8 Mon Sep 17 00:00:00 2001 From: James Procter Date: Wed, 20 Sep 2023 16:42:28 +0100 Subject: [PATCH] JAL-4195 JAL-1069 JAL-4160 errors in Cache should go to Console.stderr --- src/jalview/bin/Cache.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); } } } -- 1.7.10.2