summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-09 17:43:36 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-09 17:43:36 +0000
commitc95593578c276f5001fb40266090a5cb9bbb18ca (patch)
tree404c539f4b9833718705c31de686a7e541ffe5e9 /src/command_parse.cpp
parent19b34cde73ce410fdc335127efe4d7080270feb2 (diff)
Remove debug output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5190 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index be61ef869..11f4b4635 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -241,7 +241,6 @@ int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** p
return 0;
/* Only one commasepstream here */
- ServerInstance->Log(DEBUG,"LoopCall on '%s'",parameters[splithere]);
irc::commasepstream items1(parameters[splithere]);
std::string item = "";
unsigned int max = 0;
@@ -252,7 +251,6 @@ int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** p
*/
while (((item = items1.GetToken()) != "") && (max++ < ServerInstance->Config->MaxTargets))
{
- ServerInstance->Log(DEBUG,"LoopCall get item: '%s'", item.c_str());
parameters[splithere] = item.c_str();
CommandObj->Handle(parameters,pcnt,user);
}