From 27dabc193c8d37d7256241a1be4379478419eeee Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Wed, 5 Oct 2022 13:09:40 -0600 Subject: [PATCH] Comment out logs --- functions/src/weekly-markets-emails.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/functions/src/weekly-markets-emails.ts b/functions/src/weekly-markets-emails.ts index 44d4625a..3d5ab3ac 100644 --- a/functions/src/weekly-markets-emails.ts +++ b/functions/src/weekly-markets-emails.ts @@ -227,10 +227,10 @@ const getUserUnBetOnFollowsMarkets = async (userId: string) => { ) const topSortedMarkets = uniqueSortedMarkets.slice(0, 10) - log( - 'top 10 sorted markets by followed users', - topSortedMarkets.map((c) => c.question + ' ' + c.popularityScore) - ) + // log( + // 'top 10 sorted markets by followed users', + // topSortedMarkets.map((c) => c.question + ' ' + c.popularityScore) + // ) return topSortedMarkets } @@ -297,10 +297,10 @@ const getUserUnBetOnGroupsMarkets = async ( false ).slice(0, 10) - log( - 'top 10 sorted group markets', - topSortedMarkets.map((c) => c.question + ' ' + c.popularityScore) - ) + // log( + // 'top 10 sorted group markets', + // topSortedMarkets.map((c) => c.question + ' ' + c.popularityScore) + // ) return topSortedMarkets } @@ -378,10 +378,10 @@ const getSimilarBettorsMarkets = async ( false ).slice(0, 10) - log( - 'top 10 sorted contracts other similar bettors have bet on', - topMostSimilarContracts.map((c) => c.question) - ) + // log( + // 'top 10 sorted contracts other similar bettors have bet on', + // topMostSimilarContracts.map((c) => c.question) + // ) return topMostSimilarContracts }