From b43043d27f8b1bc632f2de7602831f46ad0f0773 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Fri, 15 May 2026 00:19:56 -0400 Subject: [PATCH] chore(gui): Remove debug task queue logging --- src/gui_2.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/gui_2.py b/src/gui_2.py index 5c8f0e2..88e671f 100644 --- a/src/gui_2.py +++ b/src/gui_2.py @@ -787,12 +787,6 @@ class App: self._autofocus_response_tab = self.controller._autofocus_response_tab #region: Process GUI task queue - # DEBUG: Check if tasks exist before processing - if hasattr(self, 'controller') and hasattr(self.controller, '_pending_gui_tasks'): - pending_count = len(self.controller._pending_gui_tasks) - if pending_count > 0: - sys.stderr.write(f"[DEBUG gui_2] _gui_func: found {pending_count} pending tasks\n") - sys.stderr.flush() self._process_pending_gui_tasks() self._process_pending_history_adds() if self.controller._process_pending_tool_calls(): self._tool_log_dirty = True