summaryrefslogtreecommitdiff
path: root/bin/bbstored/BackupStoreDaemon.cpp
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-08-22 10:48:35 +0000
committerChris Wilson <chris+github@qwirx.com>2008-08-22 10:48:35 +0000
commit064d9bd06d45f9fabdffe39e78fbb6f52c1a7960 (patch)
treea13e1ff884da8b4dce2984004ea490f0ecd1ed05 /bin/bbstored/BackupStoreDaemon.cpp
parentfae8e1cabe0f29a55f86b4274669b7d4b3cad862 (diff)
Make statistics back into a NOTICE level log again, as they're pretty
important and useful.
Diffstat (limited to 'bin/bbstored/BackupStoreDaemon.cpp')
-rw-r--r--bin/bbstored/BackupStoreDaemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bbstored/BackupStoreDaemon.cpp b/bin/bbstored/BackupStoreDaemon.cpp
index 50bd0a2b..f7be3d3b 100644
--- a/bin/bbstored/BackupStoreDaemon.cpp
+++ b/bin/bbstored/BackupStoreDaemon.cpp
@@ -361,7 +361,7 @@ void BackupStoreDaemon::LogConnectionStats(const char *commonName,
const SocketStreamTLS &s)
{
// Log the amount of data transferred
- BOX_INFO("Connection statistics for " << commonName << ":"
+ BOX_NOTICE("Connection statistics for " << commonName << ":"
" IN=" << s.GetBytesRead() <<
" OUT=" << s.GetBytesWritten() <<
" TOTAL=" << (s.GetBytesRead() + s.GetBytesWritten()));