diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-11 20:04:48 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-11 20:04:48 +0000 |
commit | 0b907417dc09c20dacb5f676c26ac7ce380fd9d4 (patch) | |
tree | 391fd21be7cc9683f486e8e0739073614b742881 /src/modules/m_httpd_stats.cpp | |
parent | b58a00ba7816db0dd5d7c462b50b95eef5d30c83 (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/m_httpd_stats.cpp')
-rw-r--r-- | src/modules/m_httpd_stats.cpp | 3 |
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; } |