|
@@ -168,7 +168,7 @@ def _goto_mode(new_mode, model_name=None):
|
|
|
|
|
|
def _input(value, port=None):
|
|
|
# Ugly json encoding of primitives
|
|
|
- print("[IN] %s" % value)
|
|
|
+ #print("[IN] %s" % value)
|
|
|
if port is None:
|
|
|
port = taskname
|
|
|
if isinstance(value, type([])):
|
|
@@ -226,7 +226,7 @@ def _output(expected=None):
|
|
|
print("Sleep for output: " + str(outputs))
|
|
|
|
|
|
del outputs[0]
|
|
|
- print("[OUT] %s" % outputs[0])
|
|
|
+ #print("[OUT] %s" % outputs[0])
|
|
|
except:
|
|
|
raise UnknownError()
|
|
|
|