31 references to LogDebug
Microsoft.AspNetCore.HttpOverrides (2)
ForwardedHeadersMiddleware.cs (2)
233_logger.LogDebug(1, "Unknown proxy: {RemoteIpAndPort}", currentValues.RemoteIpAndPort); 252_logger.LogDebug(1, "Unparsable IP: {IpAndPortText}", set.IpAndPortText);
Microsoft.AspNetCore.Identity (10)
SecurityStampValidator.cs (1)
157Logger.LogDebug(EventIds.SecurityStampValidationFailed, "Security stamp validation failed, rejecting cookie.");
SignInManager.cs (9)
149Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedEmail, "User cannot sign in without a confirmed email."); 154Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedPhoneNumber, "User cannot sign in without a confirmed phone number."); 159Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedAccount, "User cannot sign in without a confirmed account."); 344Logger.LogDebug(EventIds.SecurityStampValidationFailedId4, "Failed to validate a security stamp."); 367Logger.LogDebug(EventIds.TwoFactorSecurityStampValidationFailed, "Failed to validate a security stamp."); 492Logger.LogDebug(EventIds.InvalidPassword, "User failed to provide the correct password."); 577Logger.LogDebug(EventIds.PasskeyAttestationFailed, "Passkey attestation failed: {message}", result.Failure.Message); 621Logger.LogDebug(EventIds.PasskeyAssertionFailed, "Passkey assertion failed: {message}", result.Failure.Message); 1300Logger.LogDebug(EventIds.UserLockedOut, "User is currently locked out.");
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Internal\RedisLog.cs (1)
73logger.LogDebug(new EventId(100, "RedisConnectionLog"), message);
Microsoft.Extensions.Hosting (4)
Internal\HostingLoggerExtensions.cs (4)
36logger.LogDebug( 46logger.LogDebug( 56logger.LogDebug( 66logger.LogDebug(
Microsoft.Extensions.Identity.Core (14)
UserManager.cs (14)
768Logger.LogDebug(LoggerEventIds.InvalidPassword, "Invalid password for user."); 854Logger.LogDebug(LoggerEventIds.UserAlreadyHasPassword, "User already has a password."); 907Logger.LogDebug(LoggerEventIds.ChangePasswordFailed, "Change password failed for user."); 973Logger.LogDebug(LoggerEventIds.GetSecurityStampFailed, "GetSecurityStampAsync for user failed because stamp was null."); 1142Logger.LogDebug(LoggerEventIds.AddLoginFailed, "AddLogin for user failed because it was already associated with another user."); 1413Logger.LogDebug(LoggerEventIds.UserAlreadyInRole, "User is already in role {role}.", role); 1422Logger.LogDebug(LoggerEventIds.UserNotInRole, "User is not in role {role}.", role); 1800Logger.LogDebug(LoggerEventIds.PhoneNumberChanged, "Change phone number for user failed with invalid token."); 1888Logger.LogDebug(LoggerEventIds.VerifyUserTokenFailed, "VerifyUserTokenAsync() failed with purpose: {purpose} for user.", purpose); 1995Logger.LogDebug(LoggerEventIds.VerifyTwoFactorTokenFailed, $"{nameof(VerifyTwoFactorTokenAsync)}() failed for user."); 2193Logger.LogDebug(LoggerEventIds.LockoutFailed, "Lockout for user failed because lockout is not enabled for this user."); 2222Logger.LogDebug(LoggerEventIds.UserLockedOut, "User is locked out."); 2913Logger.LogDebug(LoggerEventIds.UserValidationFailed, "User validation failed: {errors}.", string.Join(";", errors.Select(e => e.Code))); 2949Logger.LogDebug(LoggerEventIds.PasswordValidationFailed, "User password validation failed: {errors}.", string.Join(";", errors?.Select(e => e.Code) ?? Array.Empty<string>()));