diff options
-rw-r--r-- | src/command_parse.cpp | 3 |
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); } |