mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 14:19:19 +01:00
Use err.println in handleCommonErrors
Pointed out by @aengelke
This commit is contained in:
@@ -671,7 +671,7 @@ public class Runner implements MessageConsumer {
|
||||
} else if (exceptionClass.equals("java.lang.UnsatisfiedLinkError")) {
|
||||
listener.statusError("A library used by this sketch is not installed properly.");
|
||||
if (PApplet.platform == PConstants.LINUX) {
|
||||
System.out.println(message);
|
||||
err.println(message);
|
||||
}
|
||||
err.println("A library relies on native code that's not available.");
|
||||
err.println("Or only works properly when the sketch is run as a " +
|
||||
|
||||
Reference in New Issue
Block a user