瀏覽代碼

Remove debug print statement

jonathanvdc 8 年之前
父節點
當前提交
19b9d18d1f
共有 1 個文件被更改,包括 1 次插入2 次删除
  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):
         """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)
-        raise JitCompilationFailedException("Couln't JIT")
+        raise JitCompilationFailedException("Couln't JIT function body at " + str(body_id))