1
0
mirror of https://github.com/bitwarden/server synced 2025-12-18 17:23:28 +00:00

Fix logging filter for IpRateLimitMiddleware

This commit is contained in:
Kyle Spearrin
2017-04-26 13:33:39 -04:00
parent 58339df56c
commit 91af4e12c7
2 changed files with 4 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ namespace Bit.Api.Middleware
if(blockedCount > 10)
{
_blockIpService.BlockIpAsync(identity.ClientIp, false);
_logger.LogDebug("Blocked " + identity.ClientIp);
_logger.LogInformation($"Blocked {identity.ClientIp}");
}
else
{