humanName property
The human-readable name of this level.
Implementation
String get humanName => switch(this) {
BurtLogLevel.critical => "Critical",
BurtLogLevel.error => "Error",
BurtLogLevel.warning => "Warning",
BurtLogLevel.info => "Info",
BurtLogLevel.debug => "Debug",
BurtLogLevel.trace => "Trace",
_ => "Unknown",
};