From 2efc090cbdb8e007c92ebe78e186e16ccbaa3885 Mon Sep 17 00:00:00 2001
From: brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Date: Mon, 7 Aug 2006 00:03:18 +0000
Subject: [PATCH] Remove old debug

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4760 e03df62e-2008-0410-955e-edbf42e46eb7
---
 src/command_parse.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 735d17b8a..922427c28 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -206,10 +206,7 @@ void CommandParser::ProcessCommand(userrec *user, std::string &cmd)
 	std::string command = tokens.GetToken();
 
 	while (((para[items] = tokens.GetToken()) != "") && (items < 127))
-	{
-		log(DEBUG,"Param: '%s'",para[items].c_str());
 		command_p[items] = para[items++].c_str();
-	}
 
 	std::transform(command.begin(), command.end(), command.begin(), ::toupper);