1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fixed failing ConfigFileProvider tests due to ConsoleLogLevel property error.

This commit is contained in:
Taloth Saldono
2019-01-21 22:28:45 +01:00
parent b1a8c70d20
commit 86c74b3ee0
2 changed files with 3 additions and 2 deletions
@@ -180,7 +180,7 @@ namespace NzbDrone.Core.Configuration
public string Branch => GetValue("Branch", "master").ToLowerInvariant();
public string LogLevel => GetValue("LogLevel", "Info");
public string ConsoleLogLevel => GetValue("ConsoleLogLevel", null, persist: false);
public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false);
public string SslCertHash => GetValue("SslCertHash", "");