From 87bd72b0de64890318288ac018bbe1a68a9dcf3d Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Tue, 29 Jul 2025 12:49:04 +0200 Subject: [PATCH] chore: remove log --- internal/tui/components/chat/chat.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/tui/components/chat/chat.go b/internal/tui/components/chat/chat.go index d994c1ffd608ba42eeabb01a510c6a04fe67a2df..f691f211246ad13a5b9500fd6424169b93be02da 100644 --- a/internal/tui/components/chat/chat.go +++ b/internal/tui/components/chat/chat.go @@ -2,7 +2,6 @@ package chat import ( "context" - "log/slog" "time" "github.com/charmbracelet/bubbles/v2/key" @@ -130,7 +129,6 @@ func (m *messageListCmp) View() string { func (m *messageListCmp) handlePermissionRequest(permission permission.PermissionNotification) tea.Cmd { items := m.listCmp.Items() - slog.Info("Handling permission request", "tool_call_id", permission.ToolCallID, "granted", permission.Granted) if toolCallIndex := m.findToolCallByID(items, permission.ToolCallID); toolCallIndex != NotFound { toolCall := items[toolCallIndex].(messages.ToolCallCmp) toolCall.SetPermissionRequested()