diff --git a/src/Api/Startup.cs b/src/Api/Startup.cs index 611e601860..1cc9cd86cd 100644 --- a/src/Api/Startup.cs +++ b/src/Api/Startup.cs @@ -231,6 +231,11 @@ namespace Bit.Api return true; } + if(context.Contains("IdentityServer4.Validation.TokenRequestValidator")) + { + return e.Level > LogEventLevel.Error; + } + return e.Level >= LogEventLevel.Error; };