From 061c40c8f4b2cf5f56fe84c36a465b701a15c2dd Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Wed, 25 Mar 2015 01:39:40 +0100 Subject: [PATCH] It is Not an Error Message --- src/NzbDrone.Core/Configuration/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 1cd6c9d43..8f5c49123 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -341,7 +341,7 @@ namespace NzbDrone.Core.Configuration if (_cache.TryGetValue(key, out dbValue) && dbValue != null && !String.IsNullOrEmpty(dbValue)) return dbValue; - _logger.Trace("Unable to find config key '{0}' defaultValue:'{1}'", key, defaultValue); + _logger.Trace("Using default config value for '{0}' defaultValue:'{1}'", key, defaultValue); if (persist) {