mirror of
https://github.com/bitwarden/server
synced 2025-12-16 16:23:31 +00:00
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.SeederApi;
|
|
|
|
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, globalSettings) =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (e.Properties.TryGetValue("RequestPath", out var requestPath) &&
|
|
!string.IsNullOrWhiteSpace(requestPath?.ToString()) &&
|
|
(context.Contains(".Server.Kestrel") || context.Contains(".Core.IISHttpServer")))
|
|
{
|
|
return false;
|
|
}
|
|
return e.Level >= Serilog.Events.LogEventLevel.Information;
|
|
}));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|