More modernization

- Split generic "common" libraries into specific libraries
- Use other packages in lieu of custom code
- General cleanup
This commit is contained in:
2023-04-05 16:06:38 -04:00
parent f480a6c373
commit b5f570688d
46 changed files with 1210 additions and 656 deletions

View File

@@ -1,6 +1,7 @@
using Common.Debug;
using Common.Xml;
using Serilog;
using System;
using System.Xml;
using FeedCenter.Xml;
namespace FeedCenter.FeedParsers
{
@@ -73,7 +74,7 @@ namespace FeedCenter.FeedParsers
}
catch (XmlException xmlException)
{
Tracer.WriteLine("XML error: " + xmlException.Message + "\n" + feedText);
Log.Logger.Error(xmlException, "Exception: {0}", feedText);
return FeedReadResult.InvalidXml;
}