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.
This commit is contained in:
Felix Lange 2024-12-02 18:17:43 +01:00 committed by GitHub
parent 9848e9b046
commit ae5a16f870
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

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