logOutput method

  1. @override
void logOutput(
  1. ZapEvent event
)
override

Log the output of the ZapEvent.

Implementation

@override
void logOutput(ZapEvent event) {
  if (!kDebugMode) return;
  _paintLines(event).forEach(debugPrint);
}