diff options
author | 2011-03-20 16:36:42 +0000 | |
---|---|---|
committer | 2011-03-20 16:36:42 +0000 | |
commit | fd9ce01d7672f0efdc4f161e16eec5aeaf48abff (patch) | |
tree | 1726f051dfae29803b5a04a77ad1242e10bb59d5 | |
parent | 67930b29e4b579cd4f29b8650f91b070a485ab78 (diff) | |
download | paludis-fd9ce01d7672f0efdc4f161e16eec5aeaf48abff.tar.gz paludis-fd9ce01d7672f0efdc4f161e16eec5aeaf48abff.tar.xz |
Don't log pool stats, since it makes static dtor orders fiddly
-rw-r--r-- | paludis/util/pool-impl.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/paludis/util/pool-impl.hh b/paludis/util/pool-impl.hh index 891758c51..d7aa2dbcf 100644 --- a/paludis/util/pool-impl.hh +++ b/paludis/util/pool-impl.hh @@ -23,7 +23,6 @@ #include <paludis/util/pool.hh> #include <paludis/util/mutex.hh> #include <paludis/util/hashes.hh> -#include <paludis/util/log.hh> #include <paludis/util/stringify.hh> #include <unordered_map> #include <memory> @@ -58,12 +57,6 @@ namespace paludis reused(0) { } - - ~Imp() - { - Log::get_instance()->message("pool.reused_score", ll_debug, lc_no_context) - << PoolReuseScore<T_>::message(store.size(), reused); - } }; template <typename T_> |