1 Star 0 Fork 0

peter/fabric

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
getlevel.go 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
Will Lahti 提交于 2018-11-08 02:46 +08:00 . Update logging nomenclature - s/module/logger
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package clilogging
import (
"context"
pb "github.com/hyperledger/fabric/protos/peer"
"github.com/spf13/cobra"
)
func getLevelCmd(cf *LoggingCmdFactory) *cobra.Command {
var loggingGetLevelCmd = &cobra.Command{
Use: "getlevel <logger>",
Short: "Returns the logging level of the requested logger.",
Long: `Returns the logging level of the requested logger. Note: the logger name should exactly match the name that is displayed in the logs.`,
RunE: func(cmd *cobra.Command, args []string) error {
return getLevel(cf, cmd, args)
},
}
return loggingGetLevelCmd
}
func getLevel(cf *LoggingCmdFactory, cmd *cobra.Command, args []string) (err error) {
err = checkLoggingCmdParams(cmd, args)
if err == nil {
// Parsing of the command line is done so silence cmd usage
cmd.SilenceUsage = true
if cf == nil {
cf, err = InitCmdFactory()
if err != nil {
return err
}
}
op := &pb.AdminOperation{
Content: &pb.AdminOperation_LogReq{
LogReq: &pb.LogLevelRequest{
LogModule: args[0],
},
},
}
env := cf.wrapWithEnvelope(op)
logResponse, err := cf.AdminClient.GetModuleLogLevel(context.Background(), env)
if err != nil {
return err
}
logger.Infof("Current log level for logger '%s': %s", logResponse.LogModule, logResponse.LogLevel)
}
return err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.3

搜索帮助