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