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); + }); } }