Skip to content

Commit

Permalink
Display all ev results
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelnindodev committed Oct 21, 2023
1 parent 757f208 commit b93ff7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/core/analysis/three_way/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ export class ThreeWayAnalyzer extends BaseAnalyser {
});

await Promise.all(results);
logger.info("Game events with EV: ", gameEventsWithEv);
gameEventsWithEv.forEach(eventWithEv => {
logger.info("Game event with EV: ", eventWithEv);
});
}
}
4 changes: 3 additions & 1 deletion src/core/analysis/two_way/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ export class TwoWayAnalyser extends BaseAnalyser {
});

await Promise.all(results);
logger.info("Game events with EV: ", gameEventsWithEv);
gameEventsWithEv.forEach(eventWithEv => {
logger.info("Game event with EV: ", eventWithEv);
});
}
}

0 comments on commit b93ff7a

Please sign in to comment.