From c4364c7034c236849f801f0cd748fb05fa1c59a0 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 2 Dec 2024 15:33:57 +0100 Subject: [PATCH] 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. --- internal/debug/flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/debug/flags.go b/internal/debug/flags.go index 0e05975c7e07..adb652d59b3d 100644 --- a/internal/debug/flags.go +++ b/internal/debug/flags.go @@ -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, } )