summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-15 23:04:50 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-15 23:04:50 +0000
commit2d8fb5d579ba84f7ec6df5ca54babb833d14fa8b (patch)
treea86ac44ab3f55e64239abb9b0d6c2aaa5698be9c
parent2136c13b585f5d48d40c1c6bf13ad049965e7fa5 (diff)
Change the format of some debug
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6354 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/command_parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index f842ee49e..a16b73b25 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -410,7 +410,7 @@ void CommandParser::ProcessBuffer(std::string &buffer,userrec *user)
if (buffer.length())
{
- ServerInstance->Log(DEBUG,"CMDIN: %s %s",user->nick,buffer.c_str());
+ ServerInstance->Log(DEBUG,"-> :%s %s",user->nick,buffer.c_str());
this->ProcessCommand(user,buffer);
}
}