mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
related: https://github.com/milvus-io/milvus/issues/39173 Signed-off-by: shaoting-huang <shaoting.huang@zilliz.com>
107 lines
2.6 KiB
Go
107 lines
2.6 KiB
Go
// Copyright 2023 Zilliz
|
|
//
|
|
// 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 log
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"go.uber.org/zap"
|
|
"go.uber.org/zap/zapcore"
|
|
)
|
|
|
|
type Level = zapcore.Level
|
|
|
|
const (
|
|
DebugLevel = zapcore.DebugLevel
|
|
InfoLevel = zapcore.InfoLevel
|
|
WarnLevel = zapcore.WarnLevel
|
|
ErrorLevel = zapcore.ErrorLevel
|
|
PanicLevel = zapcore.PanicLevel
|
|
FatalLevel = zapcore.FatalLevel
|
|
)
|
|
|
|
type Logger struct {
|
|
l *zap.Logger
|
|
al *zap.AtomicLevel
|
|
}
|
|
|
|
func New(out io.Writer, level Level) *Logger {
|
|
if out == nil {
|
|
out = os.Stderr
|
|
}
|
|
|
|
al := zap.NewAtomicLevelAt(level)
|
|
cfg := zap.NewDevelopmentEncoderConfig()
|
|
|
|
core := zapcore.NewCore(
|
|
zapcore.NewConsoleEncoder(cfg),
|
|
zapcore.AddSync(out),
|
|
al,
|
|
)
|
|
return &Logger{l: zap.New(core, zap.AddCaller(), zap.AddCallerSkip(2)), al: &al}
|
|
}
|
|
|
|
func (l *Logger) SetLevel(level Level) {
|
|
if l.al != nil {
|
|
l.al.SetLevel(level)
|
|
}
|
|
}
|
|
|
|
type Field = zap.Field
|
|
|
|
func (l *Logger) Debug(msg string, fields ...Field) {
|
|
l.l.Debug(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Info(msg string, fields ...Field) {
|
|
l.l.Info(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Warn(msg string, fields ...Field) {
|
|
l.l.Warn(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Error(msg string, fields ...Field) {
|
|
l.l.Error(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Panic(msg string, fields ...Field) {
|
|
l.l.Panic(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Fatal(msg string, fields ...Field) {
|
|
l.l.Fatal(msg, fields...)
|
|
}
|
|
|
|
func (l *Logger) Sync() error {
|
|
return l.l.Sync()
|
|
}
|
|
|
|
var std = New(os.Stderr, DebugLevel)
|
|
|
|
func Default() *Logger { return std }
|
|
func ReplaceDefault(l *Logger) { std = l }
|
|
func SetLevel(level Level) { std.SetLevel(level) }
|
|
|
|
func Debug(msg string, fields ...Field) { std.Debug(msg, fields...) }
|
|
func Info(msg string, fields ...Field) { std.Info(msg, fields...) }
|
|
func Warn(msg string, fields ...Field) { std.Warn(msg, fields...) }
|
|
func Error(msg string, fields ...Field) { std.Error(msg, fields...) }
|
|
func Panic(msg string, fields ...Field) { std.Panic(msg, fields...) }
|
|
func Fatal(msg string, fields ...Field) { std.Fatal(msg, fields...) }
|
|
|
|
func Sync() error { return std.Sync() }
|