From 2ebee819af145d1136ad544954746283f58b64a5 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 4 Jun 2016 11:43:52 -0400 Subject: [PATCH] CmdChart: Added debug output for auto-determined hour range --- src/commands/CmdChart.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/CmdChart.cpp b/src/commands/CmdChart.cpp index 4f3c85cf..e8eaf7b1 100644 --- a/src/commands/CmdChart.cpp +++ b/src/commands/CmdChart.cpp @@ -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)); } }