init method
Initialize the logger with the given options
Implementation
@override
void init(LoggerInitOptions options) {
_options = options;
if (options.logLevel != null) {
_level = options.logLevel!;
}
}
Initialize the logger with the given options
@override
void init(LoggerInitOptions options) {
_options = options;
if (options.logLevel != null) {
_level = options.logLevel!;
}
}