--- trunk/libxmltv/Core/XMLTVLoader.cs 2013/03/08 03:36:44 44 +++ trunk/libxmltv/Core/XMLTVLoader.cs 2013/03/08 04:01:25 46 @@ -19,7 +19,7 @@ private XMLTVRuntimeInstance instance; protected XMLTVLoader(string xml_file, XMLTVRuntimeInstance xmltv) { - XMLTV_LOGGER.Log.Verbose.Debug.WriteLine("Creating Instance of XMLTVLoader"); + xmltv_logger.Log.Verbose.Debug.WriteLine("Creating Instance of XMLTVLoader"); //string _xmltv; //if (!Internals.VerifyInstance(xmltv, out _xmltv)) { return; } //xmlfile = _xmltv; @@ -35,16 +35,16 @@ private void LoadXml() { - XMLTV_LOGGER.Log.Info.WriteLine("Loading XMLTV File: {0}", instance.XmlFile.Name); - //XMLTV_LOGGER.Log.Warn.WriteLine("XML File Loading has not been implemented yet!"); + xmltv_logger.Log.Info.WriteLine("Loading XMLTV File: {0}", instance.XmlFile.Name); + //xmltv_logger.Log.Warn.WriteLine("XML File Loading has not been implemented yet!"); try { instance.XmlDoc = XDocument.Load(instance.XmlFile.FullName); } catch (Exception ex) { - XMLTV_LOGGER.Log.Error.WriteLine("Failed to load XMLTV File: {0}", instance.XmlFile.Name); - XMLTV_LOGGER.Log.Error.WriteLine(ex.GetBaseException().ToString()); + xmltv_logger.Log.Error.WriteLine("Failed to load XMLTV File: {0}", instance.XmlFile.Name); + xmltv_logger.Log.Error.WriteLine(ex.GetBaseException().ToString()); } }