예제 #1
0
파일: LogWritter.cs 프로젝트: emacslisp/cs
 public static void Error(string str)
 {
     if (logger == null)
     {
         LogWritter.Init();
     }
     logger.Error(str);
 }
예제 #2
0
파일: LogWritter.cs 프로젝트: emacslisp/cs
 public static void Debug(string str)
 {
     if (logger == null)
     {
         LogWritter.Init();
     }
     logger.Debug(str);
 }