mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
filter out identity errors from logs
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user