From 24b809d00f3b5739ffed78119d24a32eccef1989 Mon Sep 17 00:00:00 2001 From: Naufal Aros Date: Mon, 24 Feb 2025 12:02:25 +0100 Subject: [PATCH] Removed debugPring in capture device configuration --- AdyenCardScanner/Sources/CaptureSessionManager.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AdyenCardScanner/Sources/CaptureSessionManager.swift b/AdyenCardScanner/Sources/CaptureSessionManager.swift index fd5bd76049..fe2e46842a 100644 --- a/AdyenCardScanner/Sources/CaptureSessionManager.swift +++ b/AdyenCardScanner/Sources/CaptureSessionManager.swift @@ -144,7 +144,8 @@ class CaptureSessionManager: NSObject, CaptureSessionManaging { device.unlockForConfiguration() } catch { - debugPrint(error) + // Intentional empty error handling. + // The card scanning can continue even if the capture device is not configured. } } }