summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:47:05 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:47:05 +0000
commitd8e1dec0c551b2f5a1d8827a6819e16934da95aa (patch)
tree239318cd5d0154b0a3346cbee637a7be42af3eab /src
parent90689c7c04f86bdddaad9aeeb8619255db8dff80 (diff)
Log client output, so we can actually see what we're sending out, and make more sense of stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6361 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/users.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 78c72801d..7f06cfdec 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1333,6 +1333,7 @@ void userrec::Write(std::string text)
try
{
+ ServerInstance->Log(DEBUG,"<- :%s %s", this->nick, text.c_str());
text.append("\r\n");
}
catch (...)