1 Star 0 Fork 0

peter/fabric

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setlogspec.go 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
Will Lahti 提交于 2018-10-25 01:48 +08:00 . Add SetLogSpec to CLI via Admin Service
/*
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/pkg/errors"
"github.com/spf13/cobra"
)
func setLogSpecCmd(cf *LoggingCmdFactory) *cobra.Command {
var loggingSetLogSpecCmd = &cobra.Command{
Use: "setlogspec",
Short: "Sets the logging spec.",
Long: `Sets the active logging specification of the peer.`,
RunE: func(cmd *cobra.Command, args []string) error {
return setLogSpec(cf, cmd, args)
},
}
return loggingSetLogSpecCmd
}
func setLogSpec(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_LogSpecReq{
LogSpecReq: &pb.LogSpecRequest{
LogSpec: args[0],
},
},
}
env := cf.wrapWithEnvelope(op)
logResponse, err := cf.AdminClient.SetLogSpec(context.Background(), env)
if err != nil {
return err
}
if logResponse.Error != "" {
return errors.New(logResponse.Error)
}
logger.Infof("Current logging spec set to: %s", logResponse.LogSpec)
}
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.4

搜索帮助