diff options
-rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
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'); } } |