X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Flogger.go;h=ff6e52e12365270968e14db91f2465db1f6fba64;hb=refs%2Fchanges%2F76%2F1776%2F2;hp=484df2c78043c5c76189293487435ecbc6fb76f6;hpb=775722c877ef7110cdb4e992f5c216e0e03775c4;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/logger.go b/pkg/xapp/logger.go old mode 100755 new mode 100644 index 484df2c..ff6e52e --- a/pkg/xapp/logger.go +++ b/pkg/xapp/logger.go @@ -21,6 +21,7 @@ package xapp import ( mdclog "gerrit.o-ran-sc.org/r/com/golog" + "time" ) type Log struct { @@ -43,17 +44,21 @@ func (l *Log) SetMdc(key string, value string) { } func (l *Log) Error(pattern string, args ...interface{}) { + l.SetMdc("time", time.Now().Format("2019-01-02 15:04:05")) l.logger.Error(pattern, args...) } func (l *Log) Warn(pattern string, args ...interface{}) { + l.SetMdc("time", time.Now().Format("2019-01-02 15:04:05")) l.logger.Warning(pattern, args...) } func (l *Log) Info(pattern string, args ...interface{}) { + l.SetMdc("time", time.Now().Format("2019-01-02 15:04:05")) l.logger.Info(pattern, args...) } func (l *Log) Debug(pattern string, args ...interface{}) { + l.SetMdc("time", time.Now().Format("2019-01-02 15:04:05")) l.logger.Debug(pattern, args...) }