mirror of https://github.com/Icinga/icinga2.git
Remove spurious string in debug message
Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment().
This commit is contained in:
parent
ce6ab9a948
commit
e76ec0d42e
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue