From 9f81db184167740fc20a2fb79ec04f117d46ef93 Mon Sep 17 00:00:00 2001 From: Laurent Date: Sun, 4 Jan 2026 15:32:21 +0100 Subject: [PATCH] Add debug statement --- api-customer/src/controllers/telemetryController.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api-customer/src/controllers/telemetryController.py b/api-customer/src/controllers/telemetryController.py index fefe32c3..6772e60b 100644 --- a/api-customer/src/controllers/telemetryController.py +++ b/api-customer/src/controllers/telemetryController.py @@ -48,6 +48,7 @@ class TelemetryController: start_time=start_timestamp, end_time=end_timestamp ) + logger.log_info(f"Returned {len(results)} results ") return jsonify({"success" : True, "data" : results}), 200 except Exception as e: logger.log_info(e)