Skip to content

Commit

Permalink
internal/debug: rename --trace to --go-execution-trace (#30846)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fjl authored Dec 2, 2024
1 parent 9848e9b commit ae5a16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/debug/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
)
Expand Down

0 comments on commit ae5a16f

Please sign in to comment.