pub const DEFAULT_VERBOSITY: VerbosityLevel;Expand description
Default verbosity level for user output
This verbosity level is used as the default for user-facing output across all commands.
VerbosityLevel::Normal provides essential progress and results without overwhelming
users with details, making it suitable for typical command execution.
Users can override this default through command-line flags if they need:
- Less output (Quiet) for automation/scripting
- More output (Verbose/Debug) for troubleshooting
This value is used across all command handlers for consistent user experience.