mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
Fix breaking change
This commit is contained in:
@@ -12,19 +12,8 @@ public class Program
|
|||||||
.ConfigureWebHostDefaults(webBuilder =>
|
.ConfigureWebHostDefaults(webBuilder =>
|
||||||
{
|
{
|
||||||
webBuilder.UseStartup<Startup>();
|
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()
|
.Build()
|
||||||
.Run();
|
.Run();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using Bit.Core.Settings;
|
using Bit.Core.Settings;
|
||||||
using Bit.Core.Utilities;
|
|
||||||
using Bit.Seeder;
|
using Bit.Seeder;
|
||||||
using Bit.Seeder.Factories;
|
using Bit.Seeder.Factories;
|
||||||
using Bit.SeederApi.Extensions;
|
using Bit.SeederApi.Extensions;
|
||||||
@@ -63,8 +62,6 @@ public class Startup
|
|||||||
IHostApplicationLifetime appLifetime,
|
IHostApplicationLifetime appLifetime,
|
||||||
GlobalSettings globalSettings)
|
GlobalSettings globalSettings)
|
||||||
{
|
{
|
||||||
app.UseSerilog(env, appLifetime, globalSettings);
|
|
||||||
|
|
||||||
// Add PlayIdMiddleware services
|
// Add PlayIdMiddleware services
|
||||||
if (globalSettings.TestPlayIdTrackingEnabled)
|
if (globalSettings.TestPlayIdTrackingEnabled)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user