1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

It is Not an Error Message

This commit is contained in:
Taloth Saldono 2015-03-25 01:39:40 +01:00
parent 15eeb19cd5
commit 061c40c8f4

View File

@ -341,7 +341,7 @@ public string GetValue(string key, object defaultValue, bool persist = false)
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)
{