From: Christian Herdtweck Date: Wed, 3 Jun 2015 08:00:27 +0000 (+0200) Subject: increse revision to 0.6.1 and log level of missing-dump-dir-message to notice X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=ca34b9fbb9f1965fbb5768cd8a589dbf0dee6832;p=pingcheck increse revision to 0.6.1 and log level of missing-dump-dir-message to notice --- diff --git a/CMakeLists.txt b/CMakeLists.txt index cbe494d..453dba7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # project: definitions project(pingcheck) set(VERSION 0.6) -set(VERSION_REVISION 0) +set(VERSION_REVISION 1) set(TARGET ${PROJECT_NAME}) # cmake: build options diff --git a/src/icmp/icmppacketfactory.cpp b/src/icmp/icmppacketfactory.cpp index 6a42db4..330fdf9 100644 --- a/src/icmp/icmppacketfactory.cpp +++ b/src/icmp/icmppacketfactory.cpp @@ -207,7 +207,7 @@ void IcmpPacketFactory::dump_packet(const std::string &data) // check if directory exists if ( !I2n::path_exists( I2n::dirname(temp_name.str()) ) ) { - GlobalLogger.debug() << "Not saving packet data because directory " + GlobalLogger.notice() << "Not saving packet data because directory " << I2n::dirname(temp_name.str()) << " does not exist"; return; } @@ -240,7 +240,7 @@ void IcmpPacketFactory::dump_packet(const IcmpPacket &packet) // check if directory exists if ( !I2n::path_exists( I2n::dirname(temp_name.str()) ) ) { - GlobalLogger.debug() << "Not saving packet data because directory " + GlobalLogger.notice() << "Not saving packet data because directory " << I2n::dirname(temp_name.str()) << " does not exist"; return; }