提交 131c15e9 作者: Brian Tiger Chow 提交者: Juan Batiz-Benet

fix(2/log) use 'all' as the specifier to set all log levels

fixes #322

cc @mappum

License: MIT
Signed-off-by: 's avatarBrian Tiger Chow <brian@perfmode.com>
上级 fb187e49
......@@ -7,6 +7,12 @@ import (
u "github.com/jbenet/go-ipfs/util"
)
// Golang os.Args overrides * and replaces the character argument with
// an array which includes every file in the user's CWD. As a
// workaround, we use 'all' instead. The util library still uses * so
// we convert it at this step.
var logAllKeyword = "all"
var logCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Change the logging level",
......@@ -17,16 +23,29 @@ output of a running daemon.
},
Arguments: []cmds.Argument{
cmds.StringArg("subsystem", true, false, "the subsystem logging identifier. Use * for all subsystems."),
// 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, "one of: debug, info, notice, warning, error, critical"),
},
Run: func(req cmds.Request) (interface{}, error) {
args := req.Arguments()
if err := u.SetLogLevel(args[0].(string), args[1].(string)); err != nil {
subsystem, ok1 := args[0].(string)
level, ok2 := args[1].(string)
if !ok1 || !ok2 {
return nil, u.ErrCast()
}
if subsystem == logAllKeyword {
subsystem = "*"
}
if err := u.SetLogLevel(subsystem, level); err != nil {
return nil, err
}
s := fmt.Sprintf("Changed log level of '%s' to '%s'", args[0], args[1])
s := fmt.Sprintf("Changed log level of '%s' to '%s'", subsystem, level)
log.Info(s)
return &MessageOutput{s}, nil
},
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论