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
38 lines
832 B
Go
38 lines
832 B
Go
package mlog
|
|
|
|
import "sync/atomic"
|
|
|
|
var (
|
|
_ WithLogger = &Binder{}
|
|
_ LoggerBinder = &Binder{}
|
|
)
|
|
|
|
// WithLogger is implemented by types that expose a component logger.
|
|
type WithLogger interface {
|
|
Logger() *Logger
|
|
}
|
|
|
|
// LoggerBinder is implemented by types that can bind a component logger.
|
|
type LoggerBinder interface {
|
|
SetLogger(logger *Logger)
|
|
}
|
|
|
|
// Binder is an embedding helper for component-level loggers.
|
|
type Binder struct {
|
|
logger atomic.Pointer[Logger]
|
|
}
|
|
|
|
// SetLogger binds logger to the receiver. Passing nil resets it to the global logger.
|
|
func (b *Binder) SetLogger(logger *Logger) {
|
|
b.logger.Store(logger)
|
|
}
|
|
|
|
// Logger returns the bound logger, or the current global logger if none is bound.
|
|
func (b *Binder) Logger() *Logger {
|
|
logger := b.logger.Load()
|
|
if logger == nil {
|
|
return With()
|
|
}
|
|
return logger
|
|
}
|