mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
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
fa3e5c8c31
commit
f1597ca5bd
@ -138,7 +138,7 @@ std::pair<double, double> ScheduledDowntime::FindNextSegment()
|
|||||||
ObjectLock olock(ranges);
|
ObjectLock olock(ranges);
|
||||||
for (const Dictionary::Pair& kv : ranges) {
|
for (const Dictionary::Pair& kv : ranges) {
|
||||||
Log(LogDebug, "ScheduledDowntime")
|
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);
|
Dictionary::Ptr segment = LegacyTimePeriod::FindNextSegment(kv.first, kv.second, &reference);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user