1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-27 16:07:42 +08:00

Merge pull request #2572 from pfista/2551-log-level

commands: update log command help text
This commit is contained in:
Jeromy Johnson
2016-04-18 09:43:10 -07:00

View File

@ -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) {