internal/debug: rename --trace to --go-execution-trace

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 15:33:57 +01:00
parent 5347280319
commit c4364c7034

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,
}
)