From 9c2feb2e04cd8c8e6d28d6d23616abb154528ada Mon Sep 17 00:00:00 2001 From: Michael Pfister Date: Fri, 15 Apr 2016 16:09:29 -0700 Subject: [PATCH] commands: update log command help text Fixes #2551 License: MIT Signed-off-by: Mike Pfister --- core/commands/log.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/commands/log.go b/core/commands/log.go index 35de3673e..d75c39897 100644 --- a/core/commands/log.go +++ b/core/commands/log.go @@ -42,8 +42,8 @@ output of a running daemon. // TODO use a different keyword for 'all' because all can theoretically // clash with a subsystem name cmds.StringArg("subsystem", true, false, fmt.Sprintf("The subsystem logging identifier. Use '%s' for all subsystems.", logAllKeyword)), - cmds.StringArg("level", true, false, `The log level, with 'debug' the most verbose and 'panic' the least verbose. - One of: debug, info, warning, error, fatal, panic. + cmds.StringArg("level", true, false, `The log level, with 'debug' the most verbose and 'critical' the least verbose. + One of: debug, info, notice, warning, error, critical. `), }, Run: func(req cmds.Request, res cmds.Response) {