1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 19:23:45 +00:00

Fix breaking change

This commit is contained in:
Hinton
2025-11-27 15:36:39 +01:00
parent 424e2b4b24
commit 688f1560bb
2 changed files with 1 additions and 15 deletions

View File

@@ -12,19 +12,8 @@ public class Program
.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;
}));
})
.AddSerilogFileLogging()
.Build()
.Run();
}