mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
package log |
|
|
|
import "github.com/sirupsen/logrus" |
|
|
|
// LogrusLogger is an adapter for Logrus implementing the Logger interface. |
|
type LogrusLogger struct { |
|
logger logrus.FieldLogger |
|
} |
|
|
|
// NewLogrusLogger returns a new Logger wrapping Logrus. |
|
func NewLogrusLogger(logger logrus.FieldLogger) *LogrusLogger { |
|
return &LogrusLogger{ |
|
logger: logger, |
|
} |
|
} |
|
|
|
// WithField adds a field to the log entry. |
|
func (l *LogrusLogger) WithField(key string, value interface{}) Logger { |
|
return NewLogrusLogger(l.logger.WithField(key, value)) |
|
} |
|
|
|
// Info logs an Info level event. |
|
func (l *LogrusLogger) Info(msg string) { |
|
l.logger.Info(msg) |
|
} |
|
|
|
// Warn logs a Warn level event. |
|
func (l *LogrusLogger) Warn(msg string) { |
|
l.logger.Warn(msg) |
|
} |
|
|
|
// Debugf formats and logs a Debug level event. |
|
func (l *LogrusLogger) Debugf(format string, args ...interface{}) { |
|
l.logger.Debugf(format, args...) |
|
} |
|
|
|
// Infof formats and logs an Info level event. |
|
func (l *LogrusLogger) Infof(format string, args ...interface{}) { |
|
l.logger.Infof(format, args...) |
|
} |
|
|
|
// Errorf formats and logs n Error level event. |
|
func (l *LogrusLogger) Errorf(format string, args ...interface{}) { |
|
l.logger.Errorf(format, args...) |
|
}
|
|
|