CmdChart: Added debug output for auto-determined hour range

This commit is contained in:
Paul Beckingham 2016-06-04 11:43:52 -04:00
parent 29ac612614
commit 2ebee819af

View file

@ -241,6 +241,8 @@ static void determineHourRange (
first_hour = std::max (first_hour - 1, 0);
last_hour = std::min (last_hour + 1, 23);
}
debug (format ("Day range is from {1}:00 - {2}:00", first_hour, last_hour));
}
}