remove logging flags from acmesolver

Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
This commit is contained in:
Tim Ramlot 2023-05-05 13:45:55 +02:00
parent f0871eb6b8
commit c113a3eadc
No known key found for this signature in database
GPG Key ID: 47428728E0C2878D

View File

@ -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.Token, "token", "", "the challenge token to verify against")
cmd.Flags().StringVar(&s.Key, "key", "", "the challenge key to respond with") 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 return cmd
} }