public void Error(string message, Exception innerException)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_ERROR, name, message + " Exception: " + innerException.Message + " - StackTrace: " + innerException.StackTrace);
 }
 public void Fatal(string message, Exception innerException)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_CRITICAL, name, message + " Exception: " + innerException.Message + " - StackTrace: " + innerException.StackTrace);
 }
 public void Fatal(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_CRITICAL, name, message);
 }
 public void Error(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_ERROR, name, message);
 }
 public void Info(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_INFO, name, message);
 }
 public void Warn(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_WARN, name, message);
 }
 public void Debug(string message)
 {
     InternalLogManager.Log(LogLevel.LOG_LEVEL_DEBUG, name, message);
 }