From e3aa50af37293571b7124d2a174d2d817d642dde Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Fri, 26 Jun 2026 10:07:42 +0200 Subject: [PATCH] remove debug print --- pkg/es/index.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/es/index.go b/pkg/es/index.go index 0aa1d9f..023300a 100644 --- a/pkg/es/index.go +++ b/pkg/es/index.go @@ -28,7 +28,6 @@ import ( "codeberg.org/scip/esctl/pkg/cfg" "codeberg.org/scip/esctl/pkg/printer" - "github.com/alecthomas/repr" "github.com/elastic/go-elasticsearch/v9/typedapi/cat/indices" "github.com/elastic/go-elasticsearch/v9/typedapi/esdsl" "github.com/elastic/go-elasticsearch/v9/typedapi/types/enums/healthstatus" @@ -133,7 +132,6 @@ func IndexShow(conf *cfg.Config, indexpattern string) error { } slog.Debug("index show", "index", res) - repr.Println(res) for name, index := range res { fields := make([]string, len(index.Mappings.Properties))