using System; using System.Collections.Generic; using System.Text; using log4net; using System.IO; using System.ComponentModel; using System.Drawing; using System.Diagnostics; using System.Threading; using System.Windows.Forms; using log4net.Repository; using log4net.Appender; namespace CommonLib.LOG { public class LogEventArgs: EventArgs { public string Msg = string.Empty; public int ErrorLevel = 0; public LogEventArgs( ) { } public LogEventArgs(string Msg,int ErrorLevel) { this.Msg = Msg; this.ErrorLevel = ErrorLevel; } }; }