Skip to content

Commit

Permalink
fix: change default verbosity to description (#2173)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Feb 16, 2024
1 parent d7fdbc5 commit d3b3de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cli/commands/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const (
autogenerateEnclaveIdentifierKeyword = ""

verbosityFlagKey = "verbosity"
defaultVerbosity = "brief"
defaultVerbosity = "description"

parallelismFlagKey = "parallelism"
defaultParallelism = "4"
Expand Down Expand Up @@ -143,7 +143,7 @@ var StarlarkRunCmd = &engine_consuming_kurtosis_command.EngineConsumingKurtosisC
},
{
Key: verbosityFlagKey,
Usage: fmt.Sprintf("The verbosity of the command output: %s. If unset, it defaults to `brief` for a concise and explicit output. Use `detailed` to display the exhaustive list of arguments for each command. `executable` will generate executable Starlark instructions. `description` will just print a description of what is about to happen without any details", strings.Join(command_args_run.VerbosityStrings(), ", ")),
Usage: fmt.Sprintf("The verbosity of the command output: %s. If unset, it defaults to `description` for a crisp output that explains whats about to happen. Use `brief` for a concise yet explicit ouptut, to see the entire instruction thats about to execute. Use `detailed` to display the exhaustive list of arguments for each instruction. `executable` will generate executable Starlark instructions.", strings.Join(command_args_run.VerbosityStrings(), ", ")),
Type: flags.FlagType_String,
Shorthand: "v",
Default: defaultVerbosity,
Expand Down

0 comments on commit d3b3de9

Please sign in to comment.