Documentation
¶
Overview ¶
Package logger provides a deck backend that leverages Go's core log package.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // TagDebug is the tag added to messages logged at the DEBUG level. TagDebug = "DEBUG: " // TagInfo is the tag added to messages logged at the INFO level. TagInfo = "INFO: " // TagWarning is the tag added to messages logged at the WARN level. TagWarning = "WARN: " // TagError is the tag added to messages logged at the ERROR level. TagError = "ERROR: " // TagFatal is the tag added to messages logged at the FATAL level. TagFatal = "FATAL: " )
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger is a log deck backend that passes logs through to Go's core log package.
Click to show internal directories.
Click to hide internal directories.