From c959388b3786d7d94c6c7926f99c43439ec018ef Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Thu, 5 Dec 2013 19:59:54 +0100 Subject: [PATCH] Let Editor::statusError print to stderr Before, these were only shown in the GUI, which makes a failing commandline build a bit puzzling. As a side effect, the error is now shown in the log area in addition to the status line above the log area, but that should be ok. --- app/src/processing/app/Editor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 0d197a582..953f9f444 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -2638,6 +2638,7 @@ public class Editor extends JFrame implements RunnerListener { * Show an error int the status bar. */ public void statusError(String what) { + System.err.println(what); status.error(what); //new Exception("deactivating RUN").printStackTrace(); toolbar.deactivate(EditorToolbar.RUN);