Documentation ¶
Index ¶
- Variables
- type Logger
- func (l Logger) Debug(msg string, args ...interface{})
- func (l Logger) Error(msg string, args ...interface{})
- func (l Logger) Fatal(msg string, args ...interface{})
- func (l Logger) GetLogr() logr.Logger
- func (l Logger) Info(msg string, args ...interface{})
- func (l Logger) Level() loggers.LogLevel
- func (l Logger) Warn(msg string, args ...interface{})
- func (l Logger) WithFields(fields ...field.Field) loggers.Logger
Constants ¶
This section is empty.
Variables ¶
View Source
var Instance = Logger{/* contains filtered or unexported fields */}
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger is a wrapper around the go default logger that just logs to the console Note, that this type of logger does not provide any special features but just forwards the log messages to the builtin log package of GO. It is not used in production code
Click to show internal directories.
Click to hide internal directories.