[Box Backup-commit] COMMIT r1472 - box/chris/merge/lib/server
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Sat, 24 Mar 2007 22:58:16 +0000
Author: chris
Date: 2007-03-24 22:58:16 +0000 (Sat, 24 Mar 2007)
New Revision: 1472
Modified:
box/chris/merge/lib/server/Daemon.cpp
Log:
Reduce default logging level in debug builds from TRACE back down to INFO,
to reduce noise in tests. (refs #3, merges [1441])
Modified: box/chris/merge/lib/server/Daemon.cpp
===================================================================
--- box/chris/merge/lib/server/Daemon.cpp 2007-03-24 22:56:13 UTC (rev 1471)
+++ box/chris/merge/lib/server/Daemon.cpp 2007-03-24 22:58:16 UTC (rev 1472)
@@ -105,7 +105,7 @@
#ifdef NDEBUG
int masterLevel = Log::NOTICE; // need an int to do math with
#else
- int masterLevel = Log::TRACE; // need an int to do math with
+ int masterLevel = Log::INFO; // need an int to do math with
#endif
char c;