Skip to content

Commit

Permalink
Successful event count
Browse files Browse the repository at this point in the history
  • Loading branch information
Lan2u committed Oct 12, 2024
1 parent 65d7c23 commit 66f4da2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/training-sheets/legacy-training-import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,11 @@ export const legacyTrainingImport = async (conf: Config, deps: ImportDeps) => {
});
}

deps.logger.info('Successful events:');
deps.logger.info(
'Successful events: %s out of %s rows',
newEvents.length,
sheetData.right.sheets[0].data[0].rowData.length
);
for (const newEvent of newEvents) {
if (Math.random() < 0.01) {
deps.logger.info(newEvent);
Expand Down

0 comments on commit 66f4da2

Please sign in to comment.