mute static method
Mute a log level
for logging.
Any log entries with the muted log level will be not printed.
Implementation
static void mute(String level) {
if (!_muteLevels.contains(level)) _muteLevels.add(level);
}
Mute a log level
for logging.
Any log entries with the muted log level will be not printed.
static void mute(String level) {
if (!_muteLevels.contains(level)) _muteLevels.add(level);
}