--- trunk/xmltv_parser/main.cs 2013/03/07 09:06:23 15 +++ trunk/xmltv_parser/main.cs 2013/03/07 09:26:43 16 @@ -17,15 +17,16 @@ namespace xmltv_parser InitializeComponent(); string log_path = Application.StartupPath; string log_filename = string.Format("{0}.log", typeof(main).Assembly.GetName().Name); - gLog.Initialize(string.Format(@"{0}\{1}", log_path, log_filename), false, LogLevel.kLogLevel_All); + gLog.CreateLog(string.Format(@"{0}\{1}", log_path, log_filename), false, LogLevel.kLogLevel_All); } - private void Form1_Load(object sender, EventArgs e) + private void main_Load(object sender, EventArgs e) { } - private void Form1_Shown(object sender, EventArgs e) + private void main_Shown(object sender, EventArgs e) { + gLog.Log.Debug.WriteLine(""); var xmltv = XMLTV.CreateLoader("20130307_continuum_schedule.xml"); //XMLTV.Test(xmltv); }