Documentation ¶
Overview ¶
Package level defines a Priority type and some conversion methods for a 7-tiered logging level schema, which mirror syslog and system's logging levels.
Levels range from Emergency (0) to Debug (7), and the special type Priority and associated constants provide access to these values.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Priority ¶
type Priority int16
Priority is an integer that tracks log levels. Use with one of the defined constants.
const ( Emergency Priority = 100 Alert Priority = 90 Critical Priority = 80 Error Priority = 70 Warning Priority = 60 Notice Priority = 50 Info Priority = 40 Debug Priority = 30 Trace Priority = 20 Invalid Priority = 0 )
Constants defined for easy access to
func FromString ¶
FromString takes a string, (case insensitive, leading and trailing space removed, )
Click to show internal directories.
Click to hide internal directories.