X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2FScheduler.java;h=9b3950924545fa6f6cad424e071e974f8926feaa;hb=a45a8fc2ca7e197f70a1e13ae22d2a49339722f8;hp=46b076acddd0408d07e422dc5e4f73b9da55f5a2;hpb=15801ed8984e7463b3fbe517e13d86cd08db9b15;p=org.ibex.core.git diff --git a/src/org/ibex/Scheduler.java b/src/org/ibex/Scheduler.java index 46b076a..9b39509 100644 --- a/src/org/ibex/Scheduler.java +++ b/src/org/ibex/Scheduler.java @@ -60,7 +60,6 @@ public class Scheduler { protected static Queue runnable = new Queue(50); public void defaultRun() { while(true) { - System.out.println("enter"); current = (Task)runnable.remove(true); try { // FIXME hideous @@ -80,7 +79,6 @@ public class Scheduler { renderAll(); } catch (JSExn e) { Log.info(Scheduler.class, "a JavaScript thread spawned with ibex.thread() threw an exception:"); - Log.info(Scheduler.class, "JS Exception: " + e.getObject() + "\n" + e.backtrace()); Log.info(Scheduler.class,e); } catch (Exception e) { Log.info(Scheduler.class, "a Task threw an exception which was caught by the scheduler:"); @@ -89,7 +87,6 @@ public class Scheduler { t.printStackTrace(); } // if an Error is thrown it will cause the engine to quit - System.out.println("leave"); } } }