info method

  1. @override
void info(
  1. String message,
  2. String scope
)
override

Logs an informational message. message is the log message. scope is the scope or context of the log.

Implementation

@override
void info(String message, String scope) {
  for (final logger in loggers) {
    logger.info(message, scope);
  }
}