Browse Source

Comment out a debug statement in runtime.py

jonathanvdc 8 years ago
parent
commit
9b75bd1d82
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/modelverse_jit/runtime.py

+ 1 - 1
kernel/modelverse_jit/runtime.py

@@ -79,7 +79,7 @@ def interpret_function(function_id, named_arguments, **kwargs):
 
     username = kwargs['username']
     def exception_handler(ex):
-        print('Returning from interpreted function. Result: %s' % ex.result)
+        # print('Returning from interpreted function. Result: %s' % ex.result)
         raise primitive_functions.PrimitiveFinished(ex.result)
 
     # Create an exception handler to catch and translate InterpretedFunctionFinished.