use logEvent() instead of System.err.println()
This commit is contained in:
parent
b90ef71017
commit
59330c9a01
1 changed files with 1 additions and 1 deletions
|
@ -1087,7 +1087,7 @@ public final class Application implements IPathElement, Runnable {
|
||||||
try {
|
try {
|
||||||
eval.invokeFunction ((INode) null, "onStart", new Object[0]);
|
eval.invokeFunction ((INode) null, "onStart", new Object[0]);
|
||||||
} catch (Exception ignore) {
|
} catch (Exception ignore) {
|
||||||
System.err.println ("Error in "+name+"/onStart(): "+ignore);
|
logEvent ("Error in "+name+"/onStart(): "+ignore);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (Thread.currentThread () == worker) {
|
while (Thread.currentThread () == worker) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue