X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Flogger.go;h=226a9094f2ae88556c81bd263b7c673aecc9403a;hb=refs%2Fchanges%2F54%2F5154%2F2;hp=484df2c78043c5c76189293487435ecbc6fb76f6;hpb=775722c877ef7110cdb4e992f5c216e0e03775c4;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/logger.go b/pkg/xapp/logger.go index 484df2c..226a909 100755 --- a/pkg/xapp/logger.go +++ b/pkg/xapp/logger.go @@ -20,7 +20,9 @@ package xapp import ( + "fmt" mdclog "gerrit.o-ran-sc.org/r/com/golog" + "time" ) type Log struct { @@ -34,6 +36,10 @@ func NewLogger(name string) *Log { } } +func (l *Log) SetFormat(logMonitor int) { + l.logger.Mdclog_format_initialize(logMonitor) +} + func (l *Log) SetLevel(level int) { l.logger.LevelSet(mdclog.Level(level)) } @@ -42,18 +48,43 @@ func (l *Log) SetMdc(key string, value string) { l.logger.MdcAdd(key, value) } +func (l *Log) GetLevel() mdclog.Level { + return l.logger.LevelGet() +} + func (l *Log) Error(pattern string, args ...interface{}) { + if l.logger.LevelGet() < mdclog.ERR { + return + } + l.SetMdc("time", timeFormat()) l.logger.Error(pattern, args...) } func (l *Log) Warn(pattern string, args ...interface{}) { + if l.logger.LevelGet() < mdclog.WARN { + return + } + l.SetMdc("time", timeFormat()) l.logger.Warning(pattern, args...) } func (l *Log) Info(pattern string, args ...interface{}) { + if l.logger.LevelGet() < mdclog.INFO { + return + } + l.SetMdc("time", timeFormat()) l.logger.Info(pattern, args...) } func (l *Log) Debug(pattern string, args ...interface{}) { + if l.logger.LevelGet() < mdclog.DEBUG { + return + } + l.SetMdc("time", timeFormat()) l.logger.Debug(pattern, args...) } + +func timeFormat() string { + t := time.Now() + return fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d", t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second()) +}