summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-16 19:11:26 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-16 19:11:26 +0000
commitdbb912be820acee9bbcfe35da33a6b33c33a2574 (patch)
treeac5fe04c8c379cc228a4bd6d14c7bb289dc26b0f /src/modules/m_spanningtree.cpp
parentb16852902c9044a327819e8e2ef5deb794e99349 (diff)
More debug
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3234 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 35a575675..e9cdeab93 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1407,7 +1407,7 @@ class TreeSocket : public InspSocket
int n = line.length() % this->keylength;
if (n)
{
- log(DEBUG,"Append %d chars to line to make it %d long from %d",n,n+line.length(),line.length());
+ log(DEBUG,"Append %d chars to line to make it %d long from %d, key length %d",n,n+line.length(),line.length(),this->keylength);
line.append(n,'\7');
}
}