diff --git a/src/dgraph/interpreter.cpp b/src/dgraph/interpreter.cpp index cb917bd7f23b4f755639de1a776e274b45b06be7..9757ca7be5e05900f7107d898b92dd79ae8f6e48 100644 --- a/src/dgraph/interpreter.cpp +++ b/src/dgraph/interpreter.cpp @@ -400,7 +400,6 @@ cmdComputeSignal( const std::string& cmdLine, std::istringstream& cmdArg, std::o void Interpreter:: cmd( const std::string& cmdLine, istringstream& cmdArg, std::ostream& os ) { - cout << "#HACK cmd(" << cmdArg.str() << ")" << endl; istringstream cmdparse(cmdLine.c_str()); string obj,fun; if (cmdLine.find_first_not_of(" ") == string::npos) @@ -487,7 +486,6 @@ ShellFunctionRegisterer( const std::string& funName, const Interpreter::ShellBasicFunction& f) { dgDEBUGIN(25); - cout << "#HACK registering " << funName << endl; Shell.registerFunction(funName,f); dgDEBUGOUT(25); }