add --debug-goroutines

This commit is contained in:
2026-07-13 14:04:51 +02:00
parent a69262ba24
commit 29d24a112f
3 changed files with 41 additions and 17 deletions

View File

@@ -119,6 +119,12 @@ func Main() int {
Usage: "enable HTTP debugging",
Destination: &conf.DebugHTTP,
},
&cli.BoolFlag{
Name: "debug-goroutines",
Value: false,
Usage: "enable goroutine debugging",
Destination: &conf.DebugGoRoutines,
},
&cli.BoolFlag{
Name: "align-ints",
Aliases: []string{"I"},