Browse Source

Remove debug print statement

jonathanvdc 8 years ago
parent
commit
19b9d18d1f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      kernel/modelverse_jit/jit.py

+ 1 - 2
kernel/modelverse_jit/jit.py

@@ -46,6 +46,5 @@ class ModelverseJit(object):
     def try_jit(self, body_id, parameter_list):
     def try_jit(self, body_id, parameter_list):
         """Tries to jit the function defined by the given entry point id and parameter list."""
         """Tries to jit the function defined by the given entry point id and parameter list."""
 
 
-        print("Couldn't JIT: " + str(body_id))
         self.mark_no_jit(body_id)
         self.mark_no_jit(body_id)
-        raise JitCompilationFailedException("Couln't JIT")
+        raise JitCompilationFailedException("Couln't JIT function body at " + str(body_id))