跳到主要内容

pkg/util/log.go


Content

// Copyright 2023-2024 daviszhen
//
// 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 util

import (
"go.uber.org/zap"
)

var logger *zap.Logger

func init() {
var err error
logger, err = zap.NewProduction()
if err != nil {
panic(err)
}
}

func Debug(msg string, fields ...zap.Field) {
logger.Debug(msg, fields...)
}

func Info(msg string, fields ...zap.Field) {
logger.Info(msg, fields...)
}

func Warn(msg string, fields ...zap.Field) {
logger.Warn(msg, fields...)
}

func Error(msg string, fields ...zap.Field) {
logger.Error(msg, fields...)
}

func DPanic(msg string, fields ...zap.Field) {
logger.DPanic(msg, fields...)
}

func Panic(msg string, fields ...zap.Field) {
logger.Panic(msg, fields...)
}

func Fatal(msg string, fields ...zap.Field) {
logger.Fatal(msg, fields...)
}