@cryptotaxi247 / kubo / commits / 84f974ef8

Add panic as loglevel in log config

License: MIT Signed-off-by: rht <rhtbot@gmail.com>

rht committed Jun 12, 2015 at 04:52 UTC 84f974ef8bd44fe033d20fa6f408a7d6b018be9d
1 file changed +1 -1
core/commands/log.go
+1 -1
@@ -45,7 +45,7 @@ output of a running daemon.
45 // TODO use a different keyword for 'all' because all can theoretically
46 // clash with a subsystem name
47 cmds.StringArg("subsystem", true, false, fmt.Sprintf("the subsystem logging identifier. Use '%s' for all subsystems.", logAllKeyword)),
48 - cmds.StringArg("level", true, false, "one of: debug, info, warning, error, fatal"),
48 + cmds.StringArg("level", true, false, "one of: debug, info, warning, error, fatal, panic"),
49 },
50 Run: func(req cmds.Request, res cmds.Response) {
51