summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-03-24 22:58:16 +0000
committerChris Wilson <chris+github@qwirx.com>2007-03-24 22:58:16 +0000
commit30eec391b1be077b6ef7f97337b36ef204f10666 (patch)
treeabc6693a4ea216af443aa4a4b0be1b03d857c8c9 /lib
parente9f3450fb12f26b20ae06816a01fb9f78c613857 (diff)
Reduce default logging level in debug builds from TRACE back down to INFO,
to reduce noise in tests. (refs #3, merges [1441])
Diffstat (limited to 'lib')
-rw-r--r--lib/server/Daemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/server/Daemon.cpp b/lib/server/Daemon.cpp
index 07ca705b..5ee45378 100644
--- a/lib/server/Daemon.cpp
+++ b/lib/server/Daemon.cpp
@@ -105,7 +105,7 @@ int Daemon::Main(const char *DefaultConfigFile, int argc, const char *argv[])
#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;