--- trunk/TSControlPanel/Program.cs 2012/07/12 16:29:51 52 +++ trunk/TSControlPanel/Program.cs 2012/07/12 16:30:29 53 @@ -26,7 +26,7 @@ Exception ex = (e.ExceptionObject as Exception); if (ex == null) { - Logging.ATSAdminLog.Error("Encountered unhandled Exception, but the exception was null"); + Logging.TSControlPanelLog.Error("Encountered unhandled Exception, but the exception was null"); return; } if (e.ExceptionObject.GetType() == typeof(SqlException)) @@ -34,14 +34,14 @@ SqlException sql_ex = (ex as SqlException); using (log4net.NDC.Push(string.Format("SqlException: ID={0} MESSAGE={1}{2}Diagnostics:{2}{3}", sql_ex.Number.ToString(), sql_ex.Message, System.Environment.NewLine, sql_ex.ToString()))) { - Logging.ATSAdminLog.Error("Encountered unhandled SqlException"); + Logging.TSControlPanelLog.Error("Encountered unhandled SqlException"); } } else { using (log4net.NDC.Push(string.Format("SqlException: MESSAGE={0}{1}Diagnostics:{1}{2}", ex.Message, System.Environment.NewLine, ex.ToString()))) { - Logging.ATSAdminLog.Error("Encountered unhandled Exception"); + Logging.TSControlPanelLog.Error("Encountered unhandled Exception"); } } }