示例#1
0
 static LogConfig()
 {
     LogConfig.Logger = (ICSLog) new CSLogger(false);
     LogConfig.Output = (ICSLog) new CSLogger(true);
 }
示例#2
0
 /// <summary> 静态构造函数 </summary>
 static GlobalLog()
 {
     Logger = new CSLogger(false);
     Output = new CSLogger(true);
 }
示例#3
0
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public LoggerWarp()
 {
     logger = GlobalLog.Logger;
 }