1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 01:38:24 +00:00

log exception if pubDate can't be parsed.

This commit is contained in:
Keivan Beigi 2013-08-07 17:57:45 -07:00
parent f4aae73d27
commit 1fdc27598b

View file

@ -26,7 +26,7 @@ public static DateTime PublishDate(this XElement item)
}
catch (FormatException e)
{
Logger.TraceException("Unable to parse " + dateString, e);
Logger.WarnException("Unable to parse " + dateString, e);
throw;
}
}