From c948bdfd6cbf45478e4b5c8fef38ab8de7366e63 Mon Sep 17 00:00:00 2001 From: Marcus Brown Date: Sun, 20 Oct 2024 19:01:10 +1100 Subject: [PATCH] Add startup log message for Dayglo Detector script - Added a log message to indicate when the Dayglo Detector script starts. --- dayglo_detector/dayglo_detector.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dayglo_detector/dayglo_detector.py b/dayglo_detector/dayglo_detector.py index 9e0ab26..2e3904d 100644 --- a/dayglo_detector/dayglo_detector.py +++ b/dayglo_detector/dayglo_detector.py @@ -115,6 +115,7 @@ def calculate_dayglo_rating(image): return rating async def main(): + print("Starting Dayglo Detector...") # Handle command line argument for image file if len(sys.argv) > 1: image_file = sys.argv[1]