From e76ec0d42e706f25675748a10c660ca52f8c5405 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Edgar=20Fu=C3=9F?= Date: Thu, 18 Oct 2018 18:35:14 +0200 Subject: [PATCH] Remove spurious string in debug message Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment(). --- lib/icinga/scheduleddowntime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0