Beispiel #1
0
 /// <inheritdoc />
 void Log4netILog.Warn(object message)
 {
     this.Warn(AbbotwareLogger.ObjectToString(message));
 }
Beispiel #2
0
 /// <inheritdoc />
 void Log4netILog.Warn(object message, Exception exception)
 {
     (this as AbbotwareILoggerV2).Warn(AbbotwareLogger.ObjectToString(message), exception);
 }
Beispiel #3
0
 /// <inheritdoc />
 void Log4netILog.Info(object message)
 {
     this.Info(AbbotwareLogger.ObjectToString(message));
 }
Beispiel #4
0
 /// <inheritdoc />
 void Log4netILog.Fatal(object message)
 {
     this.Fatal(AbbotwareLogger.ObjectToString(message));
 }
Beispiel #5
0
 /// <inheritdoc />
 void Log4netILog.Error(object message)
 {
     this.Error(AbbotwareLogger.ObjectToString(message));
 }
Beispiel #6
0
 /// <inheritdoc />
 void Log4netILog.Debug(object message)
 {
     this.Debug(AbbotwareLogger.ObjectToString(message));
 }