increse revision to 0.6.1 and log level of missing-dump-dir-message to notice
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Wed, 3 Jun 2015 08:00:27 +0000 (10:00 +0200)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Wed, 3 Jun 2015 08:00:27 +0000 (10:00 +0200)
CMakeLists.txt
src/icmp/icmppacketfactory.cpp

index cbe494d..453dba7 100644 (file)
@@ -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
index 6a42db4..330fdf9 100644 (file)
@@ -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;
     }