commands: update log command help text
Fixes #2551 License: MIT Signed-off-by: Mike Pfister <pfista@gmail.com>
Michael Pfister committed
Apr 15, 2016 at 16:09 UTC
9c2feb2e04cd8c8e6d28d6d23616abb154528ada
1 file changed
+2
-2
core/commands/log.go
+2
-2
@@ -42,8 +42,8 @@ output of a running daemon.
42
// TODO use a different keyword for 'all' because all can theoretically
43
// clash with a subsystem name
44
cmds.StringArg("subsystem", true, false, fmt.Sprintf("The subsystem logging identifier. Use '%s' for all subsystems.", logAllKeyword)),
45
- cmds.StringArg("level", true, false, `The log level, with 'debug' the most verbose and 'panic' the least verbose.
46
- One of: debug, info, warning, error, fatal, panic.
45
+ cmds.StringArg("level", true, false, `The log level, with 'debug' the most verbose and 'critical' the least verbose.
46
+ One of: debug, info, notice, warning, error, critical.
47
`),
48
},
49
Run: func(req cmds.Request, res cmds.Response) {