From: Edgar Fuß Date: Thu, 18 Oct 2018 16:35:14 +0000 (+0200) Subject: Remove spurious string in debug message X-Git-Tag: v2.10.3~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e76ec0d42e706f25675748a10c660ca52f8c5405;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 278e3d166..8b0be7e83 100644 --- a/lib/icinga/scheduleddowntime.cpp +++ b/lib/icinga/scheduleddowntime.cpp @@ -139,7 +139,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);