コード例 #1
0
 public void Error(string message, Exception innerException)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_ERROR, name, message + " Exception: " + innerException.Message + " - StackTrace: " + innerException.StackTrace);
 }
コード例 #2
0
 public void Fatal(string message, Exception innerException)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_CRITICAL, name, message + " Exception: " + innerException.Message + " - StackTrace: " + innerException.StackTrace);
 }
コード例 #3
0
 public void Fatal(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_CRITICAL, name, message);
 }
コード例 #4
0
 public void Error(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_ERROR, name, message);
 }
コード例 #5
0
 public void Info(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_INFO, name, message);
 }
コード例 #6
0
 public void Warn(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_WARN, name, message);
 }
コード例 #7
0
 public void Debug(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_DEBUG, name, message);
 }