unmute static method
UnMutes a log level
for logging.
Any log entries with the muted log level will be not printed.
Implementation
static void unmute(String level) {
_muteLevels.removeWhere((it) => it == level);
}
UnMutes a log level
for logging.
Any log entries with the muted log level will be not printed.
static void unmute(String level) {
_muteLevels.removeWhere((it) => it == level);
}