exportLogsStream static method

Stream<String> exportLogsStream()

Exports the logs as a stream of strings.

  • Returns: A stream emitting each a non-uniform chunk of the logs. The stream is closed when all logs have been emitted.

Implementation

static Stream<String> exportLogsStream() {
  return _logger.exportLogsStream();
}