Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

75 lines
1.8 KiB
Go

package mlog
import (
"sync/atomic"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
// Level is an alias for zapcore.Level
type Level = zapcore.Level
// Re-export level constants for convenience
const (
DebugLevel = zapcore.DebugLevel
InfoLevel = zapcore.InfoLevel
WarnLevel = zapcore.WarnLevel
ErrorLevel = zapcore.ErrorLevel
DPanicLevel = zapcore.DPanicLevel
PanicLevel = zapcore.PanicLevel
FatalLevel = zapcore.FatalLevel
)
// globalLevel allows runtime level changes.
var (
defaultGlobalLevel = zap.NewAtomicLevelAt(InfoLevel)
globalLevel atomic.Pointer[zap.AtomicLevel]
)
func currentLevel() *zap.AtomicLevel {
if level := globalLevel.Load(); level != nil {
return level
}
globalLevel.Store(&defaultGlobalLevel)
return &defaultGlobalLevel
}
// SetLevel changes the log level at runtime.
// This affects all loggers created with the default config.
func SetLevel(level Level) {
currentLevel().SetLevel(level)
}
// GetLevel returns the current log level.
func GetLevel() Level {
return currentLevel().Level()
}
// LevelEnabled reports whether a message at the given level would be logged.
// Use this to guard expensive field construction on hot paths:
//
// if mlog.LevelEnabled(mlog.DebugLevel) {
// mlog.Debug(ctx, "details", mlog.String("dump", expensiveDump()))
// }
func LevelEnabled(level Level) bool {
return currentLevel().Enabled(level)
}
// ParseLevel parses a text log level.
func ParseLevel(text string) (Level, error) {
var level Level
if err := level.UnmarshalText([]byte(text)); err != nil {
return 0, err
}
return level, nil
}
// GetAtomicLevel returns the AtomicLevel for integration with custom configs.
// Callers can use this when building their own zap.Config:
//
// cfg.Level = mlog.GetAtomicLevel()
func GetAtomicLevel() zap.AtomicLevel {
return *currentLevel()
}