29 references to LogDebug
Microsoft.AspNetCore.HttpOverrides (2)
ForwardedHeadersMiddleware.cs (2)
231_logger.LogDebug(1, "Unknown proxy: {RemoteIpAndPort}", currentValues.RemoteIpAndPort); 248_logger.LogDebug(1, "Unparsable IP: {IpAndPortText}", set.IpAndPortText);
Microsoft.AspNetCore.Identity (8)
SecurityStampValidator.cs (1)
157Logger.LogDebug(EventIds.SecurityStampValidationFailed, "Security stamp validation failed, rejecting cookie.");
SignInManager.cs (7)
140Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedEmail, "User cannot sign in without a confirmed email."); 145Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedPhoneNumber, "User cannot sign in without a confirmed phone number."); 150Logger.LogDebug(EventIds.UserCannotSignInWithoutConfirmedAccount, "User cannot sign in without a confirmed account."); 283Logger.LogDebug(EventIds.SecurityStampValidationFailedId4, "Failed to validate a security stamp."); 306Logger.LogDebug(EventIds.TwoFactorSecurityStampValidationFailed, "Failed to validate a security stamp."); 402Logger.LogDebug(EventIds.InvalidPassword, "User failed to provide the correct password."); 908Logger.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)
694Logger.LogDebug(LoggerEventIds.InvalidPassword, "Invalid password for user."); 735Logger.LogDebug(LoggerEventIds.UserAlreadyHasPassword, "User already has a password."); 772Logger.LogDebug(LoggerEventIds.ChangePasswordFailed, "Change password failed for user."); 827Logger.LogDebug(LoggerEventIds.GetSecurityStampFailed, "GetSecurityStampAsync for user failed because stamp was null."); 956Logger.LogDebug(LoggerEventIds.AddLoginFailed, "AddLogin for user failed because it was already associated with another user."); 1171Logger.LogDebug(LoggerEventIds.UserAlreadyInRole, "User is already in role {role}.", role); 1180Logger.LogDebug(LoggerEventIds.UserNotInRole, "User is not in role {role}.", role); 1478Logger.LogDebug(LoggerEventIds.PhoneNumberChanged, "Change phone number for user failed with invalid token."); 1564Logger.LogDebug(LoggerEventIds.VerifyUserTokenFailed, "VerifyUserTokenAsync() failed with purpose: {purpose} for user.", purpose); 1652Logger.LogDebug(LoggerEventIds.VerifyTwoFactorTokenFailed, $"{nameof(VerifyTwoFactorTokenAsync)}() failed for user."); 1801Logger.LogDebug(LoggerEventIds.LockoutFailed, "Lockout for user failed because lockout is not enabled for this user."); 1827Logger.LogDebug(LoggerEventIds.UserLockedOut, "User is locked out."); 2323Logger.LogDebug(LoggerEventIds.UserValidationFailed, "User validation failed: {errors}.", string.Join(";", errors.Select(e => e.Code))); 2359Logger.LogDebug(LoggerEventIds.PasswordValidationFailed, "User password validation failed: {errors}.", string.Join(";", errors?.Select(e => e.Code) ?? Array.Empty<string>()));