Fix log message in Verify2FACode

This commit is contained in:
Bjarne Fyrstenborg
2023-11-30 19:59:52 +01:00
committed by Sebastiaan Janssen
parent 8c23075ec5
commit 0a718b0585

View File

@@ -73,7 +73,7 @@ public class UmbTwoFactorLoginController : SurfaceController
MemberIdentityUser? user = await _memberSignInManager.GetTwoFactorAuthenticationUserAsync();
if (user == null!)
{
_logger.LogWarning("PostVerify2FACode :: No verified member found, returning 404");
_logger.LogWarning("Verify2FACode :: No verified member found, returning 404");
return NotFound();
}