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()