1 Star 0 Fork 0

peter / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
global.go 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package flogging
import (
"strings"
"go.uber.org/zap/zapcore"
"google.golang.org/grpc/grpclog"
)
const (
defaultFormat = "%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}"
defaultLevel = zapcore.InfoLevel
)
var Global *Logging
var logger *FabricLogger
func init() {
logging, err := New(Config{})
if err != nil {
panic(err)
}
Global = logging
logger = Global.Logger("flogging")
grpcLogger := Global.ZapLogger("grpc")
grpclog.SetLogger(NewGRPCLogger(grpcLogger))
}
// Init initializes logging with the provided config.
func Init(config Config) {
err := Global.Apply(config)
if err != nil {
panic(err)
}
}
// Reset sets logging to the defaults defined in this package.
//
// Used in tests and in the package init
func Reset() {
Global.Apply(Config{})
}
// GetLoggerLevel gets the current logging level for the logger with the
// provided name.
func GetLoggerLevel(loggerName string) string {
return strings.ToUpper(Global.Level(loggerName).String())
}
// MustGetLogger creates a logger with the specified name. If an invalid name
// is provided, the operation will panic.
func MustGetLogger(loggerName string) *FabricLogger {
return Global.Logger(loggerName)
}
// ActivateSpec is used to activate a logging specification.
func ActivateSpec(spec string) {
err := Global.ActivateSpec(spec)
if err != nil {
panic(err)
}
}
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.7

搜索帮助