From 9effaa09e345ea1d8878f1c7b5eef970f4706832 Mon Sep 17 00:00:00 2001
From: Francois Bleibel <fbleibel@gmail.com>
Date: Tue, 8 Jun 2010 16:11:11 +0900
Subject: [PATCH] Removed debug hack left in the last commit.

---
 src/dgraph/interpreter.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/dgraph/interpreter.cpp b/src/dgraph/interpreter.cpp
index cb917bd..9757ca7 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);
 }
-- 
GitLab