burtLogLevel property

BurtLogLevel get burtLogLevel

Returns the severity in the equivalent value for a BurtLogLevel

Implementation

BurtLogLevel get burtLogLevel => switch (severity) {
  Severity.info => BurtLogLevel.info,
  Severity.warning => BurtLogLevel.warning,
  Severity.error => BurtLogLevel.error,
  Severity.critical => BurtLogLevel.critical,
};