示例#1
0
文件: Logger.cs 项目: tyabus/MCLawl
 public static void WriteError(Exception ex)
 {
     PidgeonLogger.LogError(ex);
 }
示例#2
0
文件: Logger.cs 项目: tyabus/MCLawl
 //Everything is static..!
 public static void Dispose()
 {
     PidgeonLogger.Dispose();
 }
示例#3
0
文件: Logger.cs 项目: tyabus/MCLawl
 public static void Write(string str) //Kept for backwards compatibility
 {
     PidgeonLogger.LogMessage(str);
 }