Exemplo n.º 1
0
 public static void Warn(object message)
 {
     SLogger.Warn(CallerQuerier.Get(CALLER_POSITION).TypeName, message);
 }
Exemplo n.º 2
0
 public static void Exception(Exception e)
 {
     SLogger.Exception(CallerQuerier.Get(CALLER_POSITION).TypeName, e);
 }
Exemplo n.º 3
0
 public static void WriteToLog(this Exception e, object?additionMessage = null)
 {
     SLogger.Warn(CallerQuerier.Get(CALLER_POSITION).TypeName, additionMessage ?? String.Empty, e);
 }