From 9d650901bb9ebb5cd13a2f772dc7100dc20d20cd Mon Sep 17 00:00:00 2001 From: 0xngmi <80541789+0xngmi@users.noreply.github.com> Date: Tue, 6 Aug 2024 10:11:50 +0100 Subject: [PATCH] logging --- api2/cron-task/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api2/cron-task/index.ts b/api2/cron-task/index.ts index d98db0a..6896b6c 100644 --- a/api2/cron-task/index.ts +++ b/api2/cron-task/index.ts @@ -119,6 +119,7 @@ async function run() { chainChartMap[getChainDisplayName(chain, true)] = data.aggregated await storeRouteData('stablecoincharts2/' + chain, data) await storeRouteData('stablecoincharts/' + chain, data.aggregated) + console.log('stablecoincharts/' + chain, data.aggregated) } catch (e) { console.error('Error fetching chain data', e) } @@ -216,4 +217,4 @@ function removeEmpty(item: any) { return Math.round(item) } return item -} \ No newline at end of file +}