From 346f1b097dc692b40f9ce5e01df9d9fb364a26a9 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 31 May 2023 06:49:59 +0300 Subject: [PATCH] Revert "Fixed: Don't log handled exceptions in API" This reverts commit 47f9467266945593aee56520aa316a7abf03c2e1. --- src/NzbDrone.Host/Bootstrap.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/NzbDrone.Host/Bootstrap.cs b/src/NzbDrone.Host/Bootstrap.cs index d5aeac042..83f6974b0 100644 --- a/src/NzbDrone.Host/Bootstrap.cs +++ b/src/NzbDrone.Host/Bootstrap.cs @@ -13,7 +13,6 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Hosting.WindowsServices; -using Microsoft.Extensions.Logging; using NLog; using NzbDrone.Common.Composition.Extensions; using NzbDrone.Common.Disk; @@ -24,7 +23,6 @@ using NzbDrone.Common.Instrumentation; using NzbDrone.Common.Instrumentation.Extensions; using NzbDrone.Core.Configuration; using NzbDrone.Core.Datastore.Extensions; -using LogLevel = Microsoft.Extensions.Logging.LogLevel; using PostgresOptions = NzbDrone.Core.Datastore.PostgresOptions; namespace NzbDrone.Host @@ -146,10 +144,6 @@ namespace NzbDrone.Host return new HostBuilder() .UseContentRoot(Directory.GetCurrentDirectory()) .UseServiceProviderFactory(new DryIocServiceProviderFactory(new Container(rules => rules.WithNzbDroneRules()))) - .ConfigureLogging(logging => - { - logging.AddFilter("Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware", LogLevel.None); - }) .ConfigureContainer(c => { c.AutoAddServices(Bootstrap.ASSEMBLIES)