// this function used to assign any user without an auth provider to the default.
// Assign the user to the InvalidAuthProvider since no configured auth provider was valid/found
// we're going to have it use a new function now.
_logger.LogWarning("User {0} was found with invalid/missing Authentication Provider {1}. Assigning user to InvalidAuthProvider until this is corrected",user.Name,user.Policy.AuthenticationProviderId);
_logger.LogWarning($"The user {user.Name} was found but no Authentication Provider with ID: {user.Policy.AuthenticationProviderId} was found. Assigning user to InvalidAuthProvider temporarily");