代码拉取完成,页面将自动刷新
// Copyright 2020 Douyu
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package xlog
import (
"fmt"
"time"
"gitee.com/nonull/eden/pkg/conf"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
// Config ...
type Config struct {
// Dir 日志输出目录
Dir string
// Name 日志文件名称
Name string
// Level 日志初始等级
Level string
// 日志初始化字段
Fields []zap.Field
// 是否添加调用者信息
AddCaller bool
// 日志前缀
Prefix string
// 日志输出文件最大长度,超过改值则截断
MaxSize int
MaxAge int
MaxBackup int
// 日志磁盘刷盘间隔
Interval time.Duration
CallerSkip int
Async bool
Queue bool
QueueSleep time.Duration
Core zapcore.Core
Debug bool
EncoderConfig *zapcore.EncoderConfig
configKey string
}
// Filename ...
func (config *Config) Filename() string {
return fmt.Sprintf("%s/%s", config.Dir, config.Name)
}
// RawConfig ...
func RawConfig(key string) *Config {
var config = DefaultConfig()
if err := conf.UnmarshalKey(key, &config); err != nil {
panic(err)
}
config.configKey = key
return config
}
// StdConfig Jupiter Standard logger config
func StdConfig(name string) *Config {
return RawConfig("jupiter.logger." + name)
}
// DefaultConfig ...
func DefaultConfig() *Config {
return &Config{
Name: "default.log",
Dir: ".",
Level: "info",
MaxSize: 500, // 500M
MaxAge: 1, // 1 day
MaxBackup: 10, // 10 backup
Interval: 24 * time.Hour,
CallerSkip: 1,
AddCaller: false,
Async: true,
Queue: false,
QueueSleep: 100 * time.Millisecond,
EncoderConfig: DefaultZapConfig(),
}
}
// Build ...
func (config Config) Build() *Logger {
if config.EncoderConfig == nil {
config.EncoderConfig = DefaultZapConfig()
}
if config.Debug {
config.EncoderConfig.EncodeLevel = DebugEncodeLevel
}
logger := newLogger(&config)
if config.configKey != "" {
logger.AutoLevel(config.configKey + ".level")
}
return logger
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。