From 19ff73dad04c63c13cfb294065258721688914f0 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 26 May 2023 17:13:38 -0700 Subject: [PATCH] Fixed: Don't log handled exceptions in API (cherry picked from commit 59f2e5b65dd7352aad92b33adefa6cf5ca79a0de) --- src/NzbDrone.Host/Bootstrap.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/NzbDrone.Host/Bootstrap.cs b/src/NzbDrone.Host/Bootstrap.cs index 5f4a750e2..f92ecb150 100644 --- a/src/NzbDrone.Host/Bootstrap.cs +++ b/src/NzbDrone.Host/Bootstrap.cs @@ -14,6 +14,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Hosting.WindowsServices; +using Microsoft.Extensions.Logging; using NLog; using Npgsql; using NzbDrone.Common.Composition.Extensions; @@ -24,6 +25,7 @@ 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 @@ -141,6 +143,10 @@ 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)