From 3feb267038fbc41176a8fa18002437c646f86496 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 24 Sep 2023 17:18:56 -0700 Subject: [PATCH] Remove debug log statements --- client/tui/tui.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/tui/tui.go b/client/tui/tui.go index 3eea3c7..d832042 100644 --- a/client/tui/tui.go +++ b/client/tui/tui.go @@ -603,7 +603,6 @@ func makeTable(ctx context.Context, rows []table.Row) (table.Model, error) { } renderChunk := func(v string, isMatching, isLeftMost, isRightMost bool) string { - hctx.GetLogger().Infof("Rendering chunk=%#v with isMatching=%#v", v, isMatching) baseStyle := lipgloss.NewStyle() if position.IsRowSelected { baseStyle = s.Selected.Copy() @@ -641,7 +640,6 @@ func makeTable(ctx context.Context, rows []table.Row) (table.Model, error) { if lastIncludedIdx != len(value) { ret += renderChunk(value[lastIncludedIdx:], false, false, true) } - hctx.GetLogger().Infof("bolded=%#v, original=%#v", ret, s.Cell.Render(value)) return ret } }