Remove spurious string in debug message

Remove a spurious " at " in the "Evaluating segment" debug message in ScheduledDowntime::FindNextSegment().
This commit is contained in:
Edgar Fuß 2018-10-18 18:35:14 +02:00 committed by Michael Friedrich
parent ce6ab9a948
commit e76ec0d42e
1 changed files with 1 additions and 1 deletions

View 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);