From 07171519621d4e75e0339caaffcb644513837e13 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 20 Sep 2022 12:35:44 +1200 Subject: [PATCH] Split up logging in ViewBest --- ViewBest.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ViewBest.tsx b/ViewBest.tsx index 55f4087..a5260cc 100644 --- a/ViewBest.tsx +++ b/ViewBest.tsx @@ -62,8 +62,8 @@ export default function ViewBest() { getWeightsBy(params.best.name, period).then(setWeights); else if (metric === Metrics.Volume) getVolumes(params.best.name, period).then(setVolumes); - - console.log(`${ViewBest.name}.useEffect`, {metric, period}); + console.log(`${ViewBest.name}.useEffect`, {metric}); + console.log(`${ViewBest.name}.useEffect`, {period}); }, [params.best.name, metric, period]); return (