From e9c3f70728b9d37b66d5bc56d239221239b8f1fc Mon Sep 17 00:00:00 2001 From: kbe Date: Sat, 16 Aug 2025 08:16:10 +0200 Subject: [PATCH] No more logging outside reservation window --- src/booker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/booker.py b/src/booker.py index ea1667a..8fb07a8 100644 --- a/src/booker.py +++ b/src/booker.py @@ -214,7 +214,7 @@ class Booker: time.sleep(60) else: # Display message when outside booking window - logging.info(f"Not booking now - current time {current_time} is outside the booking window ({target_time} to {booking_window_end})") + # logging.info(f"Not booking now - current time {current_time} is outside the booking window ({target_time} to {booking_window_end})") # Check again in 5 minutes if outside booking window time.sleep(300) except Exception as e: