summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-03-23 16:17:17 +0100
committerAttila Molnar <attilamolnar@hush.com>2016-03-23 16:17:17 +0100
commit6a120be68e20c518d6ce6cb0b3d311250a37d03a (patch)
treec89123d8478cc022588a851aa48391326788fa78 /src/command_parse.cpp
parent55ad0595a714dcf07e94fe2fafc790c0be7a85a1 (diff)
Don't prepend ":<nick>" to raw input log
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 514394a57..7e0c1c76d 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -390,8 +390,7 @@ void CommandParser::ProcessBuffer(std::string &buffer,LocalUser *user)
if (buffer.empty())
return;
- ServerInstance->Logs->Log("USERINPUT", LOG_RAWIO, "C[%s] I :%s %s",
- user->uuid.c_str(), user->nick.c_str(), buffer.c_str());
+ ServerInstance->Logs->Log("USERINPUT", LOG_RAWIO, "C[%s] I %s", user->uuid.c_str(), buffer.c_str());
ProcessCommand(user,buffer);
}