aboutsummaryrefslogtreecommitdiffstats
path: root/src/users.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-01-10 08:32:44 +0000
committerGravatar w00t2008-01-10 08:32:44 +0000
commit77f15a344b2f8cb3d4513738456a5cd229b146fb (patch)
tree807dff1fc742c4fe5f0d0a567df1dd00cc637016 /src/users.cpp
parentFix inadvertant 1.2 -> 1.1 compile error (diff)
Remove some debug that got committed accidentally
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8688 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/users.cpp b/src/users.cpp
index ac0a43f26..67da9c541 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -346,11 +346,9 @@ userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance)
void userrec::RemoveCloneCounts()
{
- ServerInstance->Log(DEBUG, "Removing my clone counts");
clonemap::iterator x = ServerInstance->local_clones.find(this->GetIPString());
if (x != ServerInstance->local_clones.end())
{
- ServerInstance->Log(DEBUG, "Removed local");
x->second--;
if (!x->second)
{
@@ -361,7 +359,6 @@ void userrec::RemoveCloneCounts()
clonemap::iterator y = ServerInstance->global_clones.find(this->GetIPString());
if (y != ServerInstance->global_clones.end())
{
- ServerInstance->Log(DEBUG, "Removed global");
y->second--;
if (!y->second)
{