From 63450e9435db42088daae4889bd6da2e40b6036f Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Thu, 29 Feb 2024 23:49:20 -0600 Subject: [PATCH] Add blur data capture logging --- src/components/CanvasBlurCapture.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/CanvasBlurCapture.tsx b/src/components/CanvasBlurCapture.tsx index 54540a79..1715a333 100644 --- a/src/components/CanvasBlurCapture.tsx +++ b/src/components/CanvasBlurCapture.tsx @@ -28,6 +28,7 @@ export default function CanvasBlurCapture({ useEffect(() => { const capture = () => { + console.log(`Attempting to capture blur data: ${imageUrl}`); const canvas = refCanvas.current; if (canvas) { canvas.width = width * scale;