shout method

  1. @override
void shout(
  1. String message,
  2. String scope,
  3. Error? error,
  4. StackTrace? stackTrace,
)
override

Logs a shout message. message is the log message. scope is the scope or context of the log. error is the associated error. stackTrace is the associated stack trace.

Implementation

@override
void shout(
  String message,
  String scope,
  Error? error,
  StackTrace? stackTrace,
) {
  for (final logger in loggers) {
    logger.shout(message, scope, error, stackTrace);
  }
}