chore(gui): Remove debug task queue logging

This commit is contained in:
2026-05-15 00:19:56 -04:00
parent bd7f8e17df
commit b43043d27f
-6
View File
@@ -787,12 +787,6 @@ class App:
self._autofocus_response_tab = self.controller._autofocus_response_tab self._autofocus_response_tab = self.controller._autofocus_response_tab
#region: Process GUI task queue #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_gui_tasks()
self._process_pending_history_adds() self._process_pending_history_adds()
if self.controller._process_pending_tool_calls(): self._tool_log_dirty = True if self.controller._process_pending_tool_calls(): self._tool_log_dirty = True