summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 20:04:48 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 20:04:48 +0000
commit0b907417dc09c20dacb5f676c26ac7ce380fd9d4 (patch)
tree391fd21be7cc9683f486e8e0739073614b742881 /src/modules
parentb58a00ba7816db0dd5d7c462b50b95eef5d30c83 (diff)
Removed some debug in the sorting algorithm
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4347 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_httpd_stats.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index ed1d6a57e..1aef54102 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -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;
}