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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user