From 27c45ba62dbfa5d7ab84bc98db209075196e1559 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 15 Jun 2015 06:12:53 -0400 Subject: [PATCH] remove log --- lib/test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/test.js b/lib/test.js index 01eafd35..6da22a49 100644 --- a/lib/test.js +++ b/lib/test.js @@ -6,7 +6,6 @@ var sync = require('sync-me'); var grunt = require('grunt'); py_exec = function(cmd) { - console.log("python: " + cmd); return sync(python, cmd)[1].trim(); } @@ -50,7 +49,6 @@ TestContractWrapper = (function() { } data = py_exec(this.className + "_contract." + method + "(" + arg_list.join(",") + ")"); - console.log("res: " + data); return data; };