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