Reformat documentation messages

This commit is contained in:
Tom Wiesing 2022-12-08 11:45:52 +01:00
parent aefde6eec2
commit c80c8f2297
No known key found for this signature in database
29 changed files with 61 additions and 61 deletions

View file

@ -4,10 +4,10 @@ import "github.com/rs/zerolog"
// Flags are global flags for the wdcli executable
type Flags struct {
LogLevel LogLevelString `short:"l" long:"loglevel" description:"Log level to use for logger" default:"info" choice:"trace" choice:"debug" choice:"info" choice:"warn" choice:"error" choice:"fatal" choice:"panic"`
ConfigPath string `short:"c" long:"config" description:"Path to distillery configuration file"`
LogLevel LogLevelString `short:"l" long:"loglevel" description:"log level" default:"info" choice:"trace" choice:"debug" choice:"info" choice:"warn" choice:"error" choice:"fatal" choice:"panic"`
ConfigPath string `short:"c" long:"config" description:"path to distillery configuration file"`
InternalInDocker bool `long:"internal-in-docker" description:"Internal Flag to signal the shell that it is running inside a docker stack belonging to the distillery"`
InternalInDocker bool `long:"internal-in-docker" description:"internal flag to signal the shell that it is running inside a docker stack belonging to the distillery"`
}
type LogLevelString string