From ca34b9fbb9f1965fbb5768cd8a589dbf0dee6832 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Wed, 3 Jun 2015 10:00:27 +0200 Subject: [PATCH] increse revision to 0.6.1 and log level of missing-dump-dir-message to notice --- CMakeLists.txt | 2 +- src/icmp/icmppacketfactory.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; } -- 1.7.1