writeOutput method

  1. @protected
void writeOutput(
  1. Map<String, String> entry
)

Adds entry (a level and message) to output.

Implementation

@protected
void writeOutput(Map<String, String> entry) {
  _output.add(entry);
  final Object? sink = Zone.current[liveOutputZoneKey];
  if (sink is void Function(Map<String, String>)) sink(entry);
}