]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_httpd_stats.cpp
Removed some debug in the sorting algorithm
[user/henk/code/inspircd.git] / 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;
        }