function printOverviewForPreprocess()

in src/utils/reportUtils.js [160:177]


function printOverviewForPreprocess(
  stream: WriteStream,
  overview: Overview,
): void {
  printHeader(stream, 'Overview');
  const numAllRows = getNumOfAllRows(overview);
  stream.write(`Num all rows: ${numAllRows}${EOL}`);
  stream.write(
    'Num rows preprocessed and hashed successfully: '
    + `${overview.numRowsUploaded}${EOL}`,
  );
  if (overview.numRowsFailedToNormalize > 0) {
    stream.write(
      `Num rows invalid: ${overview.numRowsFailedToNormalize}${EOL}`,
    );
  }
  stream.write(EOL + EOL);
}