summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 13:14:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 13:14:53 +0000
commite7f4cc66f1beb9ebab8b7415b4a56f81b3eb0c0b (patch)
tree40b852ee69d200fe37b98d02167b4284d5c3b46e /src/modules/m_spanningtree.cpp
parentde0ba7eff9560f79b5be464034fd372de1c44031 (diff)
Some debug tracking
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2050 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-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 0991dacdd..af800ec7d 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -567,17 +567,20 @@ class TreeSocket : public InspSocket
{
// kill the remote by sending KILL,
// and ABORT to stop it being introduced here.
+ log(DEBUG,"**** LOCATION ONE");
this->WriteLine(":"+Srv->GetServerName()+" KILL "+tempnick+" :Killed (Nickname collision from "+Srv->GetServerName()+")");
return true;
}
else
{
+ log(DEBUG,"*** LOCATION TWO");
// kill our local and continue to let the remote be introduced
Srv->QuitUser(iter->second,"Killed (Nickname collision from "+source+")");
}
}
else
{
+ log(DEBUG,"*** LOCATION THREE");
// remote is newer, kill it and bail to stop it being introduced
this->WriteLine(":"+Srv->GetServerName()+" KILL "+tempnick+" :Killed (Nickname collision from "+Srv->GetServerName()+")");
return true;