Skip to content

Commit

Permalink
Merge pull request #3160 from JesseWeinstein/doc/cmds/log_notice_unused
Browse files Browse the repository at this point in the history
Doc/cmds/log notice unused
  • Loading branch information
whyrusleeping committed Sep 7, 2016
2 parents 0f0cf44 + fab7ad8 commit 73f4b15
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions core/commands/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ var logLevelCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Change the logging level.",
ShortDescription: `
'ipfs log level' is a utility command used to change the logging
output of a running daemon.
Change the verbosity of one or all subsystems log output. This does not affect the event log.
`,
},

Expand All @@ -45,7 +44,7 @@ output of a running daemon.
// 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 'critical' the least verbose.
One of: debug, info, notice, warning, error, critical.
One of: debug, info, warning, error, critical.
`),
},
Run: func(req cmds.Request, res cmds.Response) {
Expand Down Expand Up @@ -91,9 +90,9 @@ subsystems of a running daemon.

var logTailCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Read the logs.",
Tagline: "Read the event log.",
ShortDescription: `
'ipfs log tail' is a utility command used to read log output as it is written.
Outputs event log messages (not other log messages) as they are generated.
`,
},

Expand Down

0 comments on commit 73f4b15

Please sign in to comment.