mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
updated indexer error logging
This commit is contained in:
parent
783f32a849
commit
ada0a3bfbc
@ -193,18 +193,18 @@ private List<EpisodeParseResult> Fetch(IEnumerable<string> urls)
|
||||
{
|
||||
if (webException.Message.Contains("503"))
|
||||
{
|
||||
_logger.Warn("{0} server is currently unbelievable. {1}", Name, webException.Message);
|
||||
_logger.Warn("{0} server is currently unbelievable.{1} {2}", Name,url, webException.Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
webException.Data.Add("FeedUrl", url);
|
||||
_logger.ErrorException("An error occurred while processing feed: " + Name, webException);
|
||||
_logger.ErrorException("An error occurred while processing feed. " + url, webException);
|
||||
}
|
||||
}
|
||||
catch (Exception feedEx)
|
||||
{
|
||||
feedEx.Data.Add("FeedUrl", url);
|
||||
_logger.ErrorException("An error occurred while processing feed: " + Name, feedEx);
|
||||
_logger.ErrorException("An error occurred while processing feed. " + url, feedEx);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -45,6 +45,7 @@
|
||||
#changesOverview {
|
||||
margin-top: 15px;
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
</style>
|
||||
}
|
||||
@ -92,7 +93,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div id="changesOverview" style="border-color: transparent;">
|
||||
<h1><div id="editingCount"></div></h1>
|
||||
<div id="editingCount"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user