Example #1
0
 public void ex(Exception exception, string message, bool showStackTrace)
 {
     DebugMsg.LogException(exception, message + getLogNameText(), showStackTrace);
 }
Example #2
0
 public void ex(Exception exception, string message)
 {
     DebugMsg.LogException(exception, message + getLogNameText());
 }
Example #3
0
 public void ex(Exception exception, bool showStackTrace)
 {
     DebugMsg.LogException(exception, showStackTrace + getLogNameText());
 }
Example #4
0
 public void ex(Exception exception)
 {
     DebugMsg.LogException(exception);
 }