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