Beispiel #1
0
 public void Log(LogLevel logLevel, string local, string msg)
 {
     if (local == string.Empty)
     {
         local = this.Local;
     }
     FileLog.WriteLog(logLevel, this.Local, msg);
 }
Beispiel #2
0
 /// <summary>
 /// 写日记 实例方法
 /// </summary>
 /// <param name="logLevel"></param>
 /// <param name="msg"></param>
 public void Log(LogLevel logLevel, string msg)
 {
     FileLog.WriteLog(logLevel, string.Empty, msg);
 }