public void ex(Exception exception, string message, bool showStackTrace)
 {
     DebugMsg.LogException(exception, message + getLogNameText(), showStackTrace);
 }
 public void ex(Exception exception, string message)
 {
     DebugMsg.LogException(exception, message + getLogNameText());
 }
 public void ex(Exception exception, bool showStackTrace)
 {
     DebugMsg.LogException(exception, showStackTrace + getLogNameText());
 }
 public void ex(Exception exception)
 {
     DebugMsg.LogException(exception);
 }