Skip to content

Commit c959388

Browse files
matthijskooijmancmaglie
authored andcommitted
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.
1 parent cc773fb commit c959388

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/src/processing/app/Editor.java

+1
Original file line numberDiff line numberDiff line change
@@ -2638,6 +2638,7 @@ public void handlePrint() {
26382638
* Show an error int the status bar.
26392639
*/
26402640
public void statusError(String what) {
2641+
System.err.println(what);
26412642
status.error(what);
26422643
//new Exception("deactivating RUN").printStackTrace();
26432644
toolbar.deactivate(EditorToolbar.RUN);

0 commit comments

Comments
 (0)