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