From 85d080136ecc23dcd4cc6eedd89a4e7476b78f9f Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Mon, 19 Jan 2026 11:58:14 +0100 Subject: [PATCH] chore: remove debug log --- internal/tui/tui.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 9881e58d0c71c23208980d721d796905cc493076..ae2e80e056843bec8fb24295590f65be775ca469 100644 --- a/internal/tui/tui.go +++ b/internal/tui/tui.go @@ -3,7 +3,6 @@ package tui import ( "context" "fmt" - "log/slog" "math/rand" "regexp" "slices" @@ -113,7 +112,6 @@ func (a appModel) Init() tea.Cmd { // Update handles incoming messages and updates the application state. func (a *appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { - slog.Info("app update", "msg", fmt.Sprintf("%T", msg)) var cmds []tea.Cmd var cmd tea.Cmd a.isConfigured = config.HasInitialDataConfig()