logAll method

void logAll()

Logs all messages of this logger.

  • Sets logging.Logger.level to ALL.

Implementation

void logAll() {
  logging.hierarchicalLoggingEnabled = true;
  logger.level = logging.Level.ALL;
}