mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
adjust log filter for exclude security token errors
This commit is contained in:
parent
c35cd49f36
commit
4c56a370a0
@ -206,7 +206,7 @@ namespace Bit.Api
|
|||||||
Func<LogEvent, bool> serilogFilter = (e) =>
|
Func<LogEvent, bool> serilogFilter = (e) =>
|
||||||
{
|
{
|
||||||
var context = e.Properties["SourceContext"].ToString();
|
var context = e.Properties["SourceContext"].ToString();
|
||||||
if(context == typeof(JwtBearerMiddleware).FullName && e.Level == LogEventLevel.Error)
|
if(e.Exception != null && e.Exception.GetType() == typeof(SecurityTokenValidationException) || e.Exception.Message == "Bad security stamp.")
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user