summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-17 00:05:02 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-17 00:05:02 +0000
commit3301091db604253bff9234fe9bb964d1c4366d2f (patch)
tree8b34dd263af6cafad81e4ab68d738827c73e3a37 /src/users.cpp
parent531e67935ecb47c2d7658d715abdc523075e66bb (diff)
Seperate USERIO into USERINPUT and USEROUTPUT
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8949 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 404e1f5a9..e3aeb299b 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1065,7 +1065,7 @@ void User::Write(std::string text)
try
{
- ServerInstance->Logs->Log("USERIO", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
+ ServerInstance->Logs->Log("USEROUTPUT", DEBUG,"C[%d] O %s", this->GetFd(), text.c_str());
text.append("\r\n");
}
catch (...)