enhancement to send log notifications to host users

This commit is contained in:
Shaun Walker
2022-02-23 16:10:24 -05:00
parent 9ba356c47e
commit ac45f67a21
6 changed files with 66 additions and 7 deletions

View File

@ -131,7 +131,7 @@
}
else
{
await logger.LogError(LogFunction.Security, "Login Failed For Username {Username}", _username);
await logger.LogInformation(LogFunction.Security, "Login Failed For Username {Username}", _username);
AddModuleMessage(Localizer["Error.Login.Fail"], MessageType.Error);
}
}
@ -152,7 +152,7 @@
}
else
{
await logger.LogError(LogFunction.Security, "Login Failed For Username {Username}", _username);
await logger.LogInformation(LogFunction.Security, "Login Failed For Username {Username}", _username);
AddModuleMessage(Localizer["Error.Login.Fail"], MessageType.Error);
}
}