From b93ff7af9eaf1e82da00d31cdaad99e4f4bc7b53 Mon Sep 17 00:00:00 2001 From: Nigel Nindo Date: Sat, 21 Oct 2023 10:55:09 +0300 Subject: [PATCH] Display all ev results --- src/core/analysis/three_way/index.ts | 4 +++- src/core/analysis/two_way/index.ts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/core/analysis/three_way/index.ts b/src/core/analysis/three_way/index.ts index c54f1f6..156b5c1 100644 --- a/src/core/analysis/three_way/index.ts +++ b/src/core/analysis/three_way/index.ts @@ -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); + }); } } diff --git a/src/core/analysis/two_way/index.ts b/src/core/analysis/two_way/index.ts index fb67e1e..2bcb1c2 100644 --- a/src/core/analysis/two_way/index.ts +++ b/src/core/analysis/two_way/index.ts @@ -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); + }); } }