static LogLevel fromString(String? text) { return LogLevel.values.firstWhere((element) => element._text == text, orElse: () => LogLevel.info); }