From b9c4e7f931bfdb9f3fd9510ffa54afa108ca5893 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 1 Jul 2013 17:56:05 +0200 Subject: [PATCH] fix typo --- lib/icinga/service-check.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/icinga/service-check.cpp b/lib/icinga/service-check.cpp index 5badf7521..a9701ffde 100644 --- a/lib/icinga/service-check.cpp +++ b/lib/icinga/service-check.cpp @@ -461,12 +461,11 @@ void Service::ProcessCheckResult(const Dictionary::Ptr& cr) olock.Unlock(); - Log(LogDebug, "icinga", "Flapping: Service " + - GetName() + " was: " + - Convert::ToString(was_flapping) + " is: " + - Convert::ToString(was_flapping) + " threshold: " + - Convert::ToString(GetFlappingThreshold()) + "% current: " + - Convert::ToString(GetFlappingCurrent()) + "%."); + Log(LogDebug, "icinga", "Flapping: Service " + GetName() + + " was: " + Convert::ToString(was_flapping) + + " is: " + Convert::ToString(is_flapping) + + " threshold: " + Convert::ToString(GetFlappingThreshold()) + + "% current: " + Convert::ToString(GetFlappingCurrent()) + "%."); /* Flush the object so other instances see the service's * new state when they receive the CheckResult message */ -- 2.40.0