From 915ce90749ee0afbb5f072837e37ce486c63c919 Mon Sep 17 00:00:00 2001 From: "fred.boniface" Date: Wed, 26 Aug 2026 17:56:20 +0100 Subject: [PATCH] Add additional logging around status polling --- launcher/ui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/launcher/ui.py b/launcher/ui.py index 5ed07ed..cd3a06e 100644 --- a/launcher/ui.py +++ b/launcher/ui.py @@ -32,6 +32,7 @@ class UIController: def poll(): try: statuses = status_provider_callback() + print(f"Status result {statuses}") # UPDATE UI self._update_label( @@ -46,6 +47,8 @@ class UIController: ) except Exception as e: print(f"Error polling status: {e}") + import traceback + traceback.print_exc() return True poll()