unmute static method

void unmute(
  1. String level
)

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);
}