Documentation ¶
Overview ¶
Package logger provides an abstract representation of logging interfaces used by recovery lib.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger interface { // Debug log message at Debug level. Debug(format string, args ...interface{}) // Info is like Debug, but logs at Info level. Info(format string, args ...interface{}) // Warning is like Debug, but logs at Warning level. Warning(format string, args ...interface{}) // Error is like Debug, but logs at Error level. Error(format string, args ...interface{}) }
Logger represents a simple interface for logging data.
Click to show internal directories.
Click to hide internal directories.