From 0708a03ec5f2ef58e0dabd4f039d48083badc969 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 15 Dec 2005 21:03:41 +0000 Subject: [PATCH] Added more logging git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2496 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 params; this->Split(line,true,params); std::string command = ""; -- 2.39.5