Slightly improve debug logging for complex authentication pipelines

This commit is contained in:
fox.cpp 2025-02-01 19:24:53 +03:00
parent 1d044249c2
commit ef7fa210dc
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
5 changed files with 22 additions and 13 deletions

View file

@ -110,15 +110,15 @@ func init() {
Value: filepath.Join(ConfigDirectory, "maddy.conf"),
},
)
maddycli.AddGlobalFlag(&cli.BoolFlag{
Name: "debug",
Usage: "enable debug logging early",
Destination: &log.DefaultLogger.Debug,
})
maddycli.AddSubcommand(&cli.Command{
Name: "run",
Usage: "Start the server",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "debug",
Usage: "enable debug logging early",
Destination: &log.DefaultLogger.Debug,
},
&cli.StringFlag{
Name: "libexec",
Value: DefaultLibexecDirectory,