mirror of
https://github.com/bitwarden/server.git
synced 2025-02-23 03:01:23 +01:00
filter out identity errors from logs
This commit is contained in:
parent
8ac0be7477
commit
bd46349e27
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user