diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 72f4da7c0..4a09ee476 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -980,6 +980,7 @@ class TreeSocket : public InspSocket } if (list[strlen(list)-1] != ':') { + log(DEBUG,"Final FJOIN line"); this->WriteLine(list); } } @@ -1152,6 +1153,7 @@ class TreeSocket : public InspSocket int WriteLine(std::string line) { + log(DEBUG,"OUT: %s",line.c_str()); return this->Write(line + "\r\n"); } |