summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar danieldg2010-03-19 18:06:39 +0000
committerGravatar Daniel De Graaf2010-08-03 17:32:40 -0400
commit3cc56cf2e6575a79dc8c1894eef5b043f0cc9087 (patch)
tree780cb6898a4bca9dc8bcf321d5d66da465b81a73 /src/command_parse.cpp
parentSimplify SASL interface using SASLHook (diff)
Add RAWIO log level which is more verbose than DEBUG
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 204b5b94d..729fd3089 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -354,7 +354,7 @@ bool CommandParser::ProcessBuffer(std::string &buffer,LocalUser *user)
if (!user || buffer.empty())
return true;
- ServerInstance->Logs->Log("USERINPUT", DEBUG, "C[%s] I :%s %s",
+ ServerInstance->Logs->Log("USERINPUT", RAWIO, "C[%s] I :%s %s",
user->uuid.c_str(), user->nick.c_str(), buffer.c_str());
return ProcessCommand(user,buffer);
}