mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 09:37:12 +00:00
updated indexer error logging
This commit is contained in:
parent
783f32a849
commit
ada0a3bfbc
2 changed files with 5 additions and 4 deletions
|
@ -193,18 +193,18 @@ private List<EpisodeParseResult> Fetch(IEnumerable<string> urls)
|
||||||
{
|
{
|
||||||
if (webException.Message.Contains("503"))
|
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
|
else
|
||||||
{
|
{
|
||||||
webException.Data.Add("FeedUrl", url);
|
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)
|
catch (Exception feedEx)
|
||||||
{
|
{
|
||||||
feedEx.Data.Add("FeedUrl", url);
|
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 {
|
#changesOverview {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
float: left;
|
float: left;
|
||||||
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
}
|
}
|
||||||
|
@ -92,7 +93,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="changesOverview" style="border-color: transparent;">
|
<div id="changesOverview" style="border-color: transparent;">
|
||||||
<h1><div id="editingCount"></div></h1>
|
<div id="editingCount"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue