From c1344794143ef48670d8eeb365a10a5295a145ae Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 15 Feb 2025 11:09:47 +0300 Subject: Enha: log level to props --- tables.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'tables.go') diff --git a/tables.go b/tables.go index b520cd9..41ea61b 100644 --- a/tables.go +++ b/tables.go @@ -173,7 +173,6 @@ func makeRAGTable(fileList []string) *tview.Flex { close(errCh) return case status := <-rag.LongJobStatusCh: - logger.Info("reading status channel", "status", status) longStatusView.SetText(status) // fmt.Fprintln(longStatusView, status) // app.Sync() @@ -366,7 +365,6 @@ func makeCodeBlockTable(codeBlocks []string) *tview.Table { rows, cols := len(codeBlocks), len(actions)+1 table := tview.NewTable(). SetBorders(true) - logger.Info("creating codeblock table", "len#", len(codeBlocks), "data", codeBlocks) for r := 0; r < rows; r++ { for c := 0; c < cols; c++ { color := tcell.ColorWhite @@ -387,7 +385,6 @@ func makeCodeBlockTable(codeBlocks []string) *tview.Table { } } } - logger.Info("filled table", "len#", len(codeBlocks), "data", codeBlocks) table.Select(0, 0).SetFixed(1, 1).SetDoneFunc(func(key tcell.Key) { if key == tcell.KeyEsc || key == tcell.KeyF1 { pages.RemovePage(agentPage) -- cgit v1.2.3