mirror of
https://github.com/bitwarden/server.git
synced 2025-05-23 04:21:05 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
52 lines
1.9 KiB
C#
52 lines
1.9 KiB
C#
using Bit.Core.Utilities;
|
|
using Serilog.Events;
|
|
|
|
namespace Bit.Notifications
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, e =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (context.Contains("IdentityServer4.Validation.TokenValidator") ||
|
|
context.Contains("IdentityServer4.Validation.TokenRequestValidator"))
|
|
{
|
|
return e.Level > LogEventLevel.Error;
|
|
}
|
|
|
|
if (e.Level == LogEventLevel.Error &&
|
|
e.MessageTemplate.Text == "Failed connection handshake.")
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (e.Level == LogEventLevel.Error &&
|
|
e.MessageTemplate.Text.StartsWith("Failed writing message."))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (e.Level == LogEventLevel.Warning &&
|
|
e.MessageTemplate.Text.StartsWith("Heartbeat took longer"))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return e.Level >= LogEventLevel.Warning;
|
|
}));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|
|
}
|