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

log jobs information

This commit is contained in:
Kyle Spearrin
2018-08-09 16:22:11 -04:00
parent 9a67c4358d
commit e00492b03b

View File

@@ -158,7 +158,8 @@ namespace Bit.Api
return false; return false;
} }
if(context.Contains(typeof(IpRateLimitMiddleware).FullName) && e.Level == LogEventLevel.Information) if(e.Level == LogEventLevel.Information &&
(context.Contains(typeof(IpRateLimitMiddleware).FullName) || context.StartsWith("\"Bit.Api.Jobs")))
{ {
return true; return true;
} }