From 6099ec9a3d1b7cf48817ff8ccbccea52e89e7dfd Mon Sep 17 00:00:00 2001 From: ris <79858083+RidRisR@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:23:04 -0800 Subject: [PATCH] br: make log command visible in cli (#50995) close pingcap/tidb#50927 --- br/cmd/br/stream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/br/cmd/br/stream.go b/br/cmd/br/stream.go index bc0f389622..4d4130a456 100644 --- a/br/cmd/br/stream.go +++ b/br/cmd/br/stream.go @@ -57,7 +57,7 @@ func NewStreamCommand() *cobra.Command { command.Root().HelpFunc()(command, strings) }) - command.Hidden = true + command.Hidden = false return command }