summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 14:12:49 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 14:12:49 +0000
commitd3f9aa0443fdf979bd03f6c559066f2fb5842c2b (patch)
tree7d23edc814806e4843b7e58159a4c1151c926e8f /src/command_parse.cpp
parentb40fabc15853ef0591991e1a55d282ad0eb95e2b (diff)
Slight change to traffic logging, as I never remember which way the damn arrows go: I now means in, O now means out. C and S remain unchanged
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7948 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-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 e0085f9d7..c273e0859 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -425,7 +425,7 @@ void CommandParser::ProcessBuffer(std::string &buffer,userrec *user)
{
if (!user->muted)
{
- ServerInstance->Log(DEBUG,"C[%d] -> :%s %s",user->GetFd(), user->nick, buffer.c_str());
+ ServerInstance->Log(DEBUG,"C[%d] I :%s %s",user->GetFd(), user->nick, buffer.c_str());
this->ProcessCommand(user,buffer);
}
}