cosmos-sdk/server/v2/flags.go

16 lines
528 B
Go

// Package serverv2 defines constants for server configuration flags and output formats.
package serverv2
const (
// FlagHome specifies the home directory flag.
FlagHome = "home"
FlagLogLevel = "log_level" // Sets the logging level
FlagLogFormat = "log_format" // Specifies the log output format
FlagLogNoColor = "log_no_color" // Disables colored log output
FlagTrace = "trace" // Enables trace-level logging
// OutputFormatJSON defines the JSON output format option.
OutputFormatJSON = "json"
)