]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Some debug tracking
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 30 Nov 2005 13:14:53 +0000 (13:14 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 30 Nov 2005 13:14:53 +0000 (13:14 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2050 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_spanningtree.cpp

index 0991dacdd0d9dad0bdadd8f3e86f2ca26ecb8335..af800ec7d279bf61c34cb5d679b9065031adb5dc 100644 (file)
@@ -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;