Current section
Files
Jump to
Current section
Files
src/glog/level.gleam
/// system is unusable
pub type Emergency
/// action must be taken immediately
pub type Alert
/// critical conditions
pub type Critical
/// error conditions
pub type Error
/// warning conditions
pub type Warning
/// normal but significant conditions
pub type Notice
/// informational messages
pub type Info
/// debug-level messages
pub type Debug
/// all levels
pub type All
/// No level
pub type None
/// Logger levels valid list
pub type Level {
Emergency
Alert
Critical
Error
Warning
Notice
Info
Debug
}
/// Logger levels valid configuration list
pub type ConfigLevel {
Level
All
None
}