diff --git a/src/Notifications/Startup.cs b/src/Notifications/Startup.cs index 30f4ed94de..0543fb0687 100644 --- a/src/Notifications/Startup.cs +++ b/src/Notifications/Startup.cs @@ -102,6 +102,11 @@ namespace Bit.Notifications return false; } + if(e.Level == LogEventLevel.Warning && e.MessageTemplate.Text.StartsWith("Heartbeat took longer")) + { + return false; + } + return e.Level >= LogEventLevel.Warning; });