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