From 6fca8d939fbc9e7b920a098fe7e460082789e2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLAKSHMIRPILLAI=E2=80=9D?= <“luxmi.r.pillai@gmail.com”> Date: Tue, 19 Nov 2024 13:12:56 +0000 Subject: [PATCH] Add console statement --- super-mode-calculator/src/lib/bigquery.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/super-mode-calculator/src/lib/bigquery.ts b/super-mode-calculator/src/lib/bigquery.ts index fae1a7b..ed9d3ed 100644 --- a/super-mode-calculator/src/lib/bigquery.ts +++ b/super-mode-calculator/src/lib/bigquery.ts @@ -31,6 +31,7 @@ export const getDataForSuperModeCalculator = async ( authClient, }); const query = buildQueryForSuperMode('PROD'); //stage is hardcoded to PROD above as we don't have sufficient data for page views in the CODE tables to run the query successfully + console.log('Query:', query); const rows = await bigquery.query({ query }); return rows; };