log exception if pubDate can't be parsed.

pull/3113/head
Keivan Beigi 11 years ago
parent f4aae73d27
commit 1fdc27598b

@ -26,7 +26,7 @@ namespace NzbDrone.Core.Indexers
}
catch (FormatException e)
{
Logger.TraceException("Unable to parse " + dateString, e);
Logger.WarnException("Unable to parse " + dateString, e);
throw;
}
}

Loading…
Cancel
Save