From 62eceb9148e818ae33abeb368c527ccb58761361 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 31 Jul 2024 22:16:24 -0700 Subject: [PATCH] New: Default file log level changed to debug (cherry picked from commit 9b528eb82914a05cfc3b67d4d6146ce51e86f68d) --- src/NzbDrone.Core/Configuration/ConfigFileProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 724195274..0aa90dbb2 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -219,7 +219,7 @@ namespace NzbDrone.Core.Configuration // TODO: Change back to "master" for the first stable release public string Branch => _updateOptions.Branch ?? GetValue("Branch", "develop").ToLowerInvariant(); - public string LogLevel => _logOptions.Level ?? GetValue("LogLevel", "info").ToLowerInvariant(); + public string LogLevel => _logOptions.Level ?? GetValue("LogLevel", "debug").ToLowerInvariant(); public string ConsoleLogLevel => _logOptions.ConsoleLevel ?? GetValue("ConsoleLogLevel", string.Empty, persist: false); public string PostgresHost => _postgresOptions?.Host ?? GetValue("PostgresHost", string.Empty, persist: false);