예제 #1
0
 public static void CannotSpecifyParentAndTarget(string name)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureCannotSpecifyParentAndTarget, SR.CannotSpecifyParentAndTarget(name));
 }
예제 #2
0
 public static void MissingParentLoggerReference(string name)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureParentReferenceNotFound, SR.MissingParentLoggerReference(name));
 }
예제 #3
0
 public static void RootCannotHaveParent()
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureRootCannotHaveParent, SR.RootCannotHaveParent());
 }
예제 #4
0
 public static void FileTargetCouldNotCreateOutputStream(Exception ex, string name)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureCouldNotCreateOutputStream, SR.FileTargetCouldNotCreateOutputStream(name, ex));
 }
예제 #5
0
 public static void DetectedCycleInLogParents(string name)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureDetectedCycleForwardingLogger, SR.DetectedCycleInLogParents(name));
 }
예제 #6
0
 public static void FinalCaptureFailed(Exception ex)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnFinalCapture, SR.FinalCaptureFailed(ex));
 }
예제 #7
0
 public static void InstrumentCaptureFailed(string name, Exception ex)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnInstrumentCapture, SR.InstrumentCaptureFailed(name, ex));
 }
예제 #8
0
 public static void FailedToBuildLogger(string name, Exception ex)
 {
     LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnBuildLogger, SR.FailedToBuildLogger(name, ex));
 }
예제 #9
0
 public static void RootLoggerInitializing(int loggerCount)
 {
     LogLog.Write(LoggerLevel.Trace, LogErrorCode.Initializing, SR.RootLoggerInitializing(loggerCount));
 }
예제 #10
0
 public static void RootLoggerDoneInitializing()
 {
     LogLog.Write(LoggerLevel.Trace, LogErrorCode.Initialized, SR.RootLoggerDoneInitializing());
 }