Skip to content

Commit

Permalink
make some more levels lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
raskchanky committed May 12, 2020
1 parent 35639e8 commit 8f8d3e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions command/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ func (c *MonitorCommand) Flags() *FlagSets {
f.StringVar(&StringVar{
Name: "log-level",
Target: &c.logLevel,
Default: "INFO",
Completion: complete.PredictSet("TRACE", "DEBUG", "INFO", "WARN", "ERROR"),
Default: "info",
Completion: complete.PredictSet("trace", "debug", "info", "warn", "error"),
Usage: "If passed, the log level to monitor logs. Supported values" +
"(in order of detail) are \"TRACE\", \"DEBUG\", \"INFO\", \"WARN\"" +
" and \"ERROR\". These are not case sensitive.",
"(in order of detail) are \"trace\", \"debug\", \"info\", \"warn\"" +
" and \"error\". These are not case sensitive.",
})

return set
Expand Down

0 comments on commit 8f8d3e8

Please sign in to comment.