From c113a3eadcead7a39e0f3c16131bf064a147b729 Mon Sep 17 00:00:00 2001 From: Tim Ramlot <42113979+inteon@users.noreply.github.com> Date: Fri, 5 May 2023 13:45:55 +0200 Subject: [PATCH] remove logging flags from acmesolver Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com> --- cmd/acmesolver/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/acmesolver/app/app.go b/cmd/acmesolver/app/app.go index 46ec9ecd8..061a88c67 100644 --- a/cmd/acmesolver/app/app.go +++ b/cmd/acmesolver/app/app.go @@ -74,7 +74,7 @@ func NewACMESolverCommand(stopCh <-chan struct{}) *cobra.Command { cmd.Flags().StringVar(&s.Token, "token", "", "the challenge token to verify against") cmd.Flags().StringVar(&s.Key, "key", "", "the challenge key to respond with") - logf.AddFlags(logOptions, cmd.Flags()) + // TODO(@inteon): use flags to configure the log configuration return cmd }