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