From: Thomas Jarosch Date: Fri, 29 Apr 2011 09:29:52 +0000 (+0200) Subject: Switch log level to ::Info during development X-Git-Tag: v1.0~58 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=0504bdf8f6fadf5564a17d62fde0be5ce97d9a8e;p=pingcheck Switch log level to ::Info during development --- diff --git a/src/main.cpp b/src/main.cpp index af2aa0e..3606bb2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,7 +21,8 @@ using I2n::Logger::GlobalLogger; void init_log() { I2n::Logger::enable_syslog( I2n::Logger::Facility::User ); - I2n::Logger::set_log_level( I2n::Logger::LogLevel::Notice ); + // TODO: Change back to Notice log level + I2n::Logger::set_log_level( I2n::Logger::LogLevel::Info ); } int main( int argc, char* argv[] )