Downgraded more logs

This commit is contained in:
kay.one 2011-04-24 21:15:23 -07:00
parent 623857eb90
commit 6f4a9f577e
3 changed files with 6 additions and 6 deletions

View File

@ -114,7 +114,7 @@ namespace NzbDrone.Core
return parsedEpisode; return parsedEpisode;
} }
} }
Logger.Warn("Unable to parse text into episode info. {0}", title); Logger.Debug("Unable to parse text into episode info. {0}", title);
return null; return null;
} }

View File

@ -61,13 +61,13 @@ namespace NzbDrone.Core.Providers.Indexer
/// </summary> /// </summary>
public void Fetch() public void Fetch()
{ {
_logger.Info("Fetching feeds from " + Settings.Name); _logger.Debug("Fetching feeds from " + Settings.Name);
foreach (var url in Urls) foreach (var url in Urls)
{ {
try try
{ {
_logger.Debug("Downloading RSS " + url); _logger.Trace("Downloading RSS " + url);
var feed = SyndicationFeed.Load(_httpProvider.DownloadXml(url)).Items; var feed = SyndicationFeed.Load(_httpProvider.DownloadXml(url)).Items;
foreach (var item in feed) foreach (var item in feed)

View File

@ -70,7 +70,7 @@ namespace NzbDrone.Core.Providers.Jobs
{ {
if (_isRunning) if (_isRunning)
{ {
Logger.Warn("Another instance of this job is already running. Ignoring request."); Logger.Info("Another instance of this job is already running. Ignoring request.");
return false; return false;
} }
_isRunning = true; _isRunning = true;
@ -113,7 +113,7 @@ namespace NzbDrone.Core.Providers.Jobs
{ {
if (_isRunning) if (_isRunning)
{ {
Logger.Warn("Another job is already running. Ignoring request."); Logger.Info("Another job is already running. Ignoring request.");
return false; return false;
} }
_isRunning = true; _isRunning = true;