[Box Backup-commit] COMMIT r2264 - box/trunk/bin/bbstored

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Fri, 22 Aug 2008 11:48:36 +0100 (BST)


Author: chris
Date: 2008-08-22 11:48:35 +0100 (Fri, 22 Aug 2008)
New Revision: 2264

Modified:
   box/trunk/bin/bbstored/BackupStoreDaemon.cpp
Log:
Make statistics back into a NOTICE level log again, as they're pretty 
important and useful.


Modified: box/trunk/bin/bbstored/BackupStoreDaemon.cpp
===================================================================
--- box/trunk/bin/bbstored/BackupStoreDaemon.cpp	2008-08-21 11:19:26 UTC (rev 2263)
+++ box/trunk/bin/bbstored/BackupStoreDaemon.cpp	2008-08-22 10:48:35 UTC (rev 2264)
@@ -361,7 +361,7 @@
 		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()));