From b93d754c1950f7d4e75d6c83a3ace733f75a1feb Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 29 Dec 2025 16:08:52 -0600 Subject: [PATCH] fix usage descriptions --- cmd/showbridge/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/showbridge/main.go b/cmd/showbridge/main.go index e691015..84bdebe 100644 --- a/cmd/showbridge/main.go +++ b/cmd/showbridge/main.go @@ -33,8 +33,8 @@ func main() { }, &cli.StringFlag{ Name: "log-level", - Value: "debug", - Usage: "set log level to DEBUG", + Value: "info", + Usage: "set log level", Validator: func(level string) error { levels := []string{"debug", "info", "warn", "error"} if !slices.Contains(levels, level) {