]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Removed some debug in the sorting algorithm
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 11 Jul 2006 20:04:48 +0000 (20:04 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 11 Jul 2006 20:04:48 +0000 (20:04 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4347 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_httpd_stats.cpp

index ed1d6a57ebc752c14f8405f7379d967ad0099b28..1aef5410276ccdd3394b9d40e5e09d950eee6011 100644 (file)
@@ -88,10 +88,7 @@ class ModuleHttpStats : public Module
                /* Sorts the hash into the sorted list using an insertion sort */
                so->clear();
                for (StatsIter a = sh->begin(); a != sh->end(); a++)
-               {
-                       log(DEBUG, "InsertOrder on %d %s",a->second,a->first.c_str());
                        InsertOrder(a->first, a->second);
-               }
                this->changed = false;
        }