Skip to content

Commit

Permalink
chore: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Nov 13, 2024
1 parent 82c74d6 commit c7ccad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/camera/Camera.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c7ccad2

Please sign in to comment.