summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:55:41 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:55:41 +0000
commitbea47caebd57fc6e103815437c2087134557d1dd (patch)
treea702e1b09482180fc43952cda830e12224b1fc30 /src/users.cpp
parent198e77293d15508e74664dc558c19d26d9a0a6f9 (diff)
Debug the spoutmouth output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6363 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index d9b417195..d923cdb26 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1333,7 +1333,11 @@ void userrec::Write(std::string text)
try
{
- ServerInstance->Log(DEBUG,"<- %s", text.c_str());
+ /* ServerInstance->Log(DEBUG,"<- %s", text.c_str());
+ * WARNING: The above debug line is VERY loud, do NOT
+ * enable it till we have a good way of filtering it
+ * out of the logs (e.g. 1.2 would be good).
+ */
text.append("\r\n");
}
catch (...)