]> 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)
committerGitHub <noreply@github.com>
Thu, 18 Oct 2018 16:35:14 +0000 (18:35 +0200)
Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment().

lib/icinga/scheduleddowntime.cpp

index 4390ca3d29eec0d873ce17bbd3a5975caa58f9b9..be463613e38383927b1a5071ca64d83bf58788cb 100644 (file)
@@ -138,7 +138,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);