]> granicus.if.org Git - icinga2/commitdiff
Remove spurious string in debug message
authorEdgar Fuß <ef@math.uni-bonn.de>
Thu, 18 Oct 2018 16:35:14 +0000 (18:35 +0200)
committerMichael Friedrich <michael.friedrich@icinga.com>
Wed, 5 Dec 2018 14:59:58 +0000 (15:59 +0100)
Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment().

lib/icinga/scheduleddowntime.cpp

index 278e3d16631af52d8d4b56fc97cbec7ad0dc4998..8b0be7e8331b2398c74a895062ff5eac039bf1f5 100644 (file)
@@ -139,7 +139,7 @@ std::pair<double, double> 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);