mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
73 lines
2.6 KiB
Go
73 lines
2.6 KiB
Go
// The MIT License
|
|
//
|
|
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
|
|
//
|
|
// Copyright (c) 2020 Uber Technologies, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
package log
|
|
|
|
// WithLogger is an interface that prepend every log entry with keyvals.
|
|
type WithLogger interface {
|
|
With(keyvals ...interface{}) Logger
|
|
}
|
|
|
|
// With returns Logger instance that prepend every log entry with keyvals. If logger implements WithLogger it is used, otherwise every log call will be intercepted.
|
|
func With(logger Logger, keyvals ...interface{}) Logger {
|
|
if wl, ok := logger.(WithLogger); ok {
|
|
return wl.With(keyvals...)
|
|
}
|
|
|
|
return newWithLogger(logger, keyvals...)
|
|
}
|
|
|
|
type withLogger struct {
|
|
logger Logger
|
|
keyvals []interface{}
|
|
}
|
|
|
|
func newWithLogger(logger Logger, keyvals ...interface{}) *withLogger {
|
|
return &withLogger{logger: logger, keyvals: keyvals}
|
|
}
|
|
|
|
func (l *withLogger) prependKeyvals(keyvals []interface{}) []interface{} {
|
|
return append(l.keyvals, keyvals...)
|
|
}
|
|
|
|
// Debug writes message to the log.
|
|
func (l *withLogger) Debug(msg string, keyvals ...interface{}) {
|
|
l.logger.Debug(msg, l.prependKeyvals(keyvals)...)
|
|
}
|
|
|
|
// Info writes message to the log.
|
|
func (l *withLogger) Info(msg string, keyvals ...interface{}) {
|
|
l.logger.Info(msg, l.prependKeyvals(keyvals)...)
|
|
}
|
|
|
|
// Warn writes message to the log.
|
|
func (l *withLogger) Warn(msg string, keyvals ...interface{}) {
|
|
l.logger.Warn(msg, l.prependKeyvals(keyvals)...)
|
|
}
|
|
|
|
// Error writes message to the log.
|
|
func (l *withLogger) Error(msg string, keyvals ...interface{}) {
|
|
l.logger.Error(msg, l.prependKeyvals(keyvals)...)
|
|
}
|