From: Edgar Fuß Date: Thu, 18 Oct 2018 16:35:14 +0000 (+0200) Subject: Remove spurious string in debug message X-Git-Tag: v2.11.0-rc1~323^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1597ca5bdd015201e291207a0c3a39761da6cb9;p=icinga2 Remove spurious string in debug message Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment(). --- diff --git a/lib/icinga/scheduleddowntime.cpp b/lib/icinga/scheduleddowntime.cpp index 4390ca3d2..be463613e 100644 --- a/lib/icinga/scheduleddowntime.cpp +++ b/lib/icinga/scheduleddowntime.cpp @@ -138,7 +138,7 @@ std::pair ScheduledDowntime::FindNextSegment() ObjectLock olock(ranges); for (const Dictionary::Pair& kv : ranges) { Log(LogDebug, "ScheduledDowntime") - << "Evaluating segment: " << kv.first << ": " << kv.second << " at "; + << "Evaluating segment: " << kv.first << ": " << kv.second; Dictionary::Ptr segment = LegacyTimePeriod::FindNextSegment(kv.first, kv.second, &reference);