Use err.println in handleCommonErrors

Pointed out by @aengelke
This commit is contained in:
gohai
2015-08-16 22:10:01 +02:00
parent 6ff0cfdbb4
commit 83db44d78b

View File

@@ -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 " +