diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index 8cc3bcac25..14054b5160 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -405,8 +405,9 @@ namespace Bit.Core.Services await UpdateTwoFactorProviderAsync(user, TwoFactorProviderType.U2f); return true; } - catch(U2fException) + catch(U2fException e) { + Logger.LogError(e, "Complete U2F registration error."); return false; } }