enableAll static method

void enableAll()

Enable all logs (use for debugging production issues)

Implementation

static void enableAll() {
  enableProductionLogs = true;
  minimumLevel = LogLevel.debug;
  enabledTags = {'*'};
}