Remove structured logging from the logger interface
This commit is contained in:
		@@ -6,8 +6,6 @@ package log
 | 
			
		||||
// Logger serves as an adapter interface for logger libraries
 | 
			
		||||
// so that dex does not depend on any of them directly.
 | 
			
		||||
type Logger interface {
 | 
			
		||||
	WithField(key string, value interface{}) Logger
 | 
			
		||||
 | 
			
		||||
	Info(msg string)
 | 
			
		||||
	Warn(msg string)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -14,11 +14,6 @@ func NewLogrusLogger(logger logrus.FieldLogger) *LogrusLogger {
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user