warning method
Logs a warning message.
message is the log message.
scope is the scope or context of the log.
Implementation
@override
void warning(String message, String scope) {
for (final logger in loggers) {
logger.warning(message, scope);
}
}