コード例 #1
0
 public static void LogError(string message)
 {
     Diagnostics.Log(message, LogLevel.Error);
 }
コード例 #2
0
 public static void LogInfo(string message)
 {
     Diagnostics.Log(message, LogLevel.Info);
 }
コード例 #3
0
 public static void LogWarn(string message)
 {
     Diagnostics.Log(message, LogLevel.Warn);
 }
コード例 #4
0
 public static void LogTrace(string message)
 {
     Diagnostics.Log(message, LogLevel.Trace);
 }