diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 21:03:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 21:03:41 +0000 |
commit | 0708a03ec5f2ef58e0dabd4f039d48083badc969 (patch) | |
tree | b198cf0a688a69d943c1917f618d6912951108fe /src | |
parent | fae8d448b6e93740db3711cd5b9130bb4f303104 (diff) |
Added more logging
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2496 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 0e8625241..334310b8c 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1117,6 +1117,7 @@ class TreeSocket : public InspSocket char* data = this->Read(); if (data) { + Srv->Log(DEBUG,"m_spanningtree: READ"); this->in_buffer += data; /* While there is at least one new line in the buffer, * do something useful (we hope!) with it. @@ -1622,7 +1623,7 @@ class TreeSocket : public InspSocket line = l; if (line == "") return true; - Srv->Log(DEBUG,"IN: '"+line+"'"); + Srv->Log(DEBUG,"IN: "+line); std::deque<std::string> params; this->Split(line,true,params); std::string command = ""; |