X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=cmd%2Fappmgr%2Flogger.go;fp=cmd%2Fappmgr%2Flogger.go;h=0000000000000000000000000000000000000000;hb=34e4383c438f87023bc411d9b0baa4a828a7e306;hp=d1bcf1571bae597ef3bfc835ad79bbf72c425bb8;hpb=4703b1a7457cf072640adbc0f5487a0675f5b6d3;p=ric-plt%2Fappmgr.git diff --git a/cmd/appmgr/logger.go b/cmd/appmgr/logger.go deleted file mode 100755 index d1bcf15..0000000 --- a/cmd/appmgr/logger.go +++ /dev/null @@ -1,72 +0,0 @@ -/* -================================================================================== - Copyright (c) 2019 AT&T Intellectual Property. - Copyright (c) 2019 Nokia - - 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 main - -import ( - mdclog "gerrit.o-ran-sc.org/r/com/golog" - "net/http" - "time" -) - -type Log struct { - logger *mdclog.MdcLogger -} - -func NewLogger(name string) *Log { - l, _ := mdclog.InitLogger(name) - return &Log{ - logger: l, - } -} - -func (l *Log) SetLevel(level int) { - l.logger.LevelSet(mdclog.Level(level)) -} - -func (l *Log) SetMdc(key string, value string) { - l.logger.MdcAdd(key, value) -} - -func (l *Log) Error(pattern string, args ...interface{}) { - l.SetMdc("time", time.Now().Format(time.RFC3339)) - l.logger.Error(pattern, args...) -} - -func (l *Log) Warn(pattern string, args ...interface{}) { - l.SetMdc("time", time.Now().Format(time.RFC3339)) - l.logger.Warning(pattern, args...) -} - -func (l *Log) Info(pattern string, args ...interface{}) { - l.SetMdc("time", time.Now().Format(time.RFC3339)) - l.logger.Info(pattern, args...) -} - -func (l *Log) Debug(pattern string, args ...interface{}) { - l.SetMdc("time", time.Now().Format(time.RFC3339)) - l.logger.Debug(pattern, args...) -} - -func LogRestRequests(inner http.Handler) http.Handler { - return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - inner.ServeHTTP(w, r) - Logger.Info("Logger: method=%s url=%s", r.Method, r.URL.RequestURI()) - }) -}