init method

  1. @override
void init(
  1. LoggerInitOptions options
)
override

Initialize the logger with the given options

Implementation

@override
void init(LoggerInitOptions options) {
  _options = options;
  if (options.logLevel != null) {
    _level = options.logLevel!;
  }
}