From be312337cb23cdc6714e1f1efb16c82f70f05940 Mon Sep 17 00:00:00 2001 From: mdrobisch Date: Mon, 8 Apr 2024 14:16:11 +0200 Subject: [PATCH] ADD additional logs when checking auth-cards --- backend/core/users/userManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/core/users/userManager.py b/backend/core/users/userManager.py index a1e7cf5..d0a0ffb 100644 --- a/backend/core/users/userManager.py +++ b/backend/core/users/userManager.py @@ -175,6 +175,7 @@ def get_user_by_authenticator(self, authenticator_private_key, authenticator_pub u.authenticator_public_key = public_key return u # no user found for the given private key + logManager.info(f"No user found for {str(authenticator_private_key)} and {str(authenticator_public_key)}") return None def checkUserAuthenticatorExists(self, authenticator_private_key, authenticator_public_key):