Documentation
¶
Overview ¶
Package logger contains interface that can be used by libraries that want to accept abstract interface type to log messages.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Noop noopLogger
Noop is an Interface implementation that does nothing.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface {
Print(v ...interface{})
Printf(format string, v ...interface{})
Println(v ...interface{})
}
Interface combines set of methods used for logging. *log.Logger from standard library implements this interface. Interface intentionally lacks Panic* and Fatal* methods.
Click to show internal directories.
Click to hide internal directories.