@@ -1417,7 +1417,7 @@ router.get(
14171417 dailyTopFlagImpressions,
14181418 } ;
14191419
1420- console . log ( "Final API Response:" , JSON . stringify ( finalResult , null , 2 ) ) ;
1420+ // console.log("Final API Response:", JSON.stringify(finalResult, null, 2));
14211421
14221422 res . json ( finalResult ) ;
14231423 } catch ( error ) {
@@ -1449,7 +1449,7 @@ router.get(
14491449 include : { flag : true , environment : true } ,
14501450 } ) ;
14511451
1452- console . log ( "experiments in a/b analytics ==>" , experiments ) ;
1452+ // console.log("experiments in a/b analytics ==>", experiments);
14531453
14541454 const results = await Promise . all (
14551455 experiments . map ( async ( exp ) => {
@@ -1491,8 +1491,8 @@ router.get(
14911491 } ;
14921492 }
14931493
1494- console . log ( "summary data form tinybird ==>" , summary ) ;
1495- console . log ( "trend data form tinybird ==>" , trend ) ;
1494+ // console.log("summary data form tinybird ==>", summary);
1495+ // console.log("trend data form tinybird ==>", trend);
14961496
14971497 // Try to find variation named 'off' or 'control', otherwise take index 0
14981498 const control =
@@ -1563,10 +1563,10 @@ router.get(
15631563 new Set ( results . map ( ( r ) => r . environmentResults [ 0 ] . environmentName ) )
15641564 ) . sort ( ) ;
15651565
1566- console . log (
1567- "results from a/b metrics ==>" ,
1568- JSON . stringify ( results , null , 2 )
1569- ) ;
1566+ // console.log(
1567+ // "results from a/b metrics ==>",
1568+ // JSON.stringify(results, null, 2)
1569+ // );
15701570
15711571 res . json ( {
15721572 experiments : results ,
0 commit comments