--- trunk/libxmltv/Core/XMLTV_LOADER.cs 2013/03/07 05:48:51 11 +++ trunk/libxmltv/Core/XMLTV_LOADER.cs 2013/03/07 09:26:43 16 @@ -4,6 +4,7 @@ using System.Text; using libxmltv.Interfaces; using System.IO; +using Enterprise.Logging; namespace libxmltv.Core { @@ -14,6 +15,7 @@ { public static object CreateLoader(string xml_file) { + XMLTV_LOGGER.Initialize(); XMLTV_LOADER loader = new XMLTV_LOADER(xml_file); return loader; } @@ -45,9 +47,16 @@ public XMLTV_LOADER(string xml_file) { xmlfile = xml_file; + LoadXml(); } #region IXMLTV_LOADER public FileInfo XmlFile { get { return new FileInfo(xmlfile); } } #endregion + + private void LoadXml() + { + XMLTV_LOGGER.Log.Info.WriteLine("Loading XMLTV File: {0}", XmlFile.Name); + XMLTV_LOGGER.Log.Warn.WriteLine("XML File Loading has not been implemented yet!"); + } } }