Documentation ¶
Overview ¶
Package logger handles application log messages with different levels.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LogLevel ¶
type LogLevel uint32
LogLevel type.
const ( // FatalLevel should be used in fatal situations, the app will exit. FatalLevel LogLevel = iota // ErrorLevel should be used when someone should really look at the error. ErrorLevel // InfoLevel should be used during normal operations. InfoLevel // DebugLevel should be used only during development. DebugLevel )
Click to show internal directories.
Click to hide internal directories.