]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Added more logging
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 15 Dec 2005 21:03:41 +0000 (21:03 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 15 Dec 2005 21:03:41 +0000 (21:03 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2496 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_spanningtree.cpp

index 0e8625241ca76afb066af5869b10f389a5d54cde..334310b8c6a26c4bcf22b4220944cf31142d6b10 100644 (file)
@@ -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 = "";