public void LogError(string message, bool trace = true)
 {
     DebugManager.WriteToLog(message, LogType.Error, trace);
 }
 public void LogFormat(params string[] list)
 {
     DebugManager.LogFormat(list);
 }
 public void LogWarning(string message, bool trace = true)
 {
     DebugManager.WriteToLog(message, LogType.Warning, trace);
 }