internal/debug: rename --trace to --go-execution-trace (#30846)

This flag is very rarely needed, so it's OK for it to have a verbose
name. The name --trace also conflicts with the concept of EVM tracing,
which is much more heavily used.
pull/30847/head
Felix Lange 2 months ago committed by GitHub
parent 9848e9b046
commit ae5a16f870
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      internal/debug/flags.go

@ -136,8 +136,8 @@ var (
Category: flags.LoggingCategory, Category: flags.LoggingCategory,
} }
traceFlag = &cli.StringFlag{ traceFlag = &cli.StringFlag{
Name: "trace", Name: "go-execution-trace",
Usage: "Write execution trace to the given file", Usage: "Write Go execution trace to the given file",
Category: flags.LoggingCategory, Category: flags.LoggingCategory,
} }
) )

Loading…
Cancel
Save