From: Alex Rousskov Date: Sun, 11 Sep 2011 22:08:15 +0000 (-0600) Subject: Polished debugging: Use DBG_CRITICAL for level-0 messages. X-Git-Tag: take08~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c575fb6a809963bb42f71ec00665c3935db17053;p=thirdparty%2Fsquid.git Polished debugging: Use DBG_CRITICAL for level-0 messages. --- diff --git a/src/store.cc b/src/store.cc index 1ced0bbcfe..f99f864f8d 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1236,7 +1236,7 @@ StoreController::maintain() if (Store::Root().currentSize() > Store::Root().maxSize()) { if (squid_curtime - last_warn_time > 10) { - debugs(20, 0, "WARNING: Disk space over limit: " + debugs(20, DBG_CRITICAL, "WARNING: Disk space over limit: " << Store::Root().currentSize() / 1024.0 << " KB > " << (Store::Root().maxSize() >> 10) << " KB"); last_warn_time = squid_curtime;