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

* enable default appsettings for self hosted installs * change setters to use arrow functions * fix tests * fix global settings ref
54 lines
2.0 KiB
C#
54 lines
2.0 KiB
C#
using Microsoft.AspNetCore.Hosting;
|
|
using Bit.Core.Utilities;
|
|
using Serilog.Events;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|