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:
parent
9848e9b046
commit
ae5a16f870
|
@ -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…
Reference in New Issue