toLogLevel method
Implementation
LogLevel toLogLevel() {
switch (this) {
case 'INFO':
return LogLevel.info;
case 'WARN':
return LogLevel.warn;
case 'ERROR':
return LogLevel.error;
case 'DEBUG':
return LogLevel.debug;
}
throw Exception('$this is not known in enum LogLevel');
}