From 03c2a2c308964e819d8c1f9bb1bba495aff9a3a9 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Thu, 21 May 2015 10:00:37 +0200 Subject: [PATCH] remove debug output or more precisely: changed its log level from notice to debug; revision 1 of v0.5 --- CMakeLists.txt | 2 +- src/host/hoststatus.cpp | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa78886..8ff46fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # project: definitions project(pingcheck) set(VERSION 0.5) -set(VERSION_REVISION 0) +set(VERSION_REVISION 1) set(TARGET ${PROJECT_NAME}) # cmake: build options diff --git a/src/host/hoststatus.cpp b/src/host/hoststatus.cpp index 530171f..6f7d590 100644 --- a/src/host/hoststatus.cpp +++ b/src/host/hoststatus.cpp @@ -71,7 +71,7 @@ void HostStatus::set_resolved_ip_count( const int resolved_ip_count ) } ResolvedIpCount = resolved_ip_count; - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: #IPs set"; } @@ -91,7 +91,7 @@ bool HostStatus::exceeded_ping_failed_limit() const */ void HostStatus::update_ping_statistics( bool ping_success ) { - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: add ping with success=" << ping_success; @@ -136,14 +136,14 @@ void HostStatus::analyze_ping_statistics() // notify if the amount of pings that failed exceed the limit if ( exceeded_ping_failed_limit() ) { - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: notify down"; LinkAnalyzer->notify_host_down( HostAddress ); } else { - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: notify up"; LinkAnalyzer->notify_host_up( HostAddress ); @@ -182,7 +182,7 @@ void HostStatus::analyze_ping_failed_count() { ExceededPingFailedLimit = true; - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: exceed limit=" << ping_fail_limit_count; } @@ -190,7 +190,7 @@ void HostStatus::analyze_ping_failed_count() { ExceededPingFailedLimit = false; - GlobalLogger.notice() << "Stat(" << HostAddress << "): " + GlobalLogger.debug() << "Stat(" << HostAddress << "): " << PingsFailedCount << " fail/" << PingsPerformedCount << " pings/" << ResolvedIpCount << " IPs: below limit=" << ping_fail_limit_count; } -- 1.7.1