summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-15 21:28:26 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-15 21:28:26 +0000
commit9def32d941ee14bdaede9905a02455636aff8059 (patch)
tree2462560528779efea3fae97ef4fe5733e34a0786 /src/modules
parent0a44bf8490fe7adc0d6b7e00a41ad702d800040e (diff)
Yet more logging
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3226 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 25507fed5..c10798281 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1341,10 +1341,12 @@ class TreeSocket : public InspSocket
*/
virtual bool OnDataReady()
{
+ log(DEBUG,"TreeSocket::OnDataReady");
char* data = this->Read();
/* Check that the data read is a valid pointer and it has some content */
if (data && *data)
{
+ log(DEBUG,"got some data");
this->in_buffer.append(data);
/* While there is at least one new line in the buffer,
* do something useful (we hope!) with it.
@@ -1381,6 +1383,7 @@ class TreeSocket : public InspSocket
}
if (!this->ProcessLine(ret))
{
+ log(DEBUG,"ProcessLine says no!");
return false;
}
}