From c7ccad2ad1562bcf36f1af3b5b199de5aa6e200f Mon Sep 17 00:00:00 2001 From: farfromrefug Date: Wed, 13 Nov 2024 21:29:52 +0100 Subject: [PATCH] chore: logging --- app/components/camera/Camera.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/camera/Camera.svelte b/app/components/camera/Camera.svelte index 27705041..6bd97801 100644 --- a/app/components/camera/Camera.svelte +++ b/app/components/camera/Camera.svelte @@ -504,9 +504,9 @@ } async function applyProcessor() { try { - DEV_LOG && console.log('applyProcessor', processor, cropEnabled, cameraView.nativeElement, isVisible); const nCropView = cropView?.nativeView?.nativeViewProtected; const nCameraView = cameraView?.nativeView; + DEV_LOG && console.log('applyProcessor', processor, cropEnabled, nCropView, nCameraView, isVisible); if (processor || !cropEnabled || !isVisible || !nCameraView || !nCropView) { return; }