public static void CannotSpecifyParentAndTarget(string name) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureCannotSpecifyParentAndTarget, SR.CannotSpecifyParentAndTarget(name)); }
public static void MissingParentLoggerReference(string name) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureParentReferenceNotFound, SR.MissingParentLoggerReference(name)); }
public static void RootCannotHaveParent() { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureRootCannotHaveParent, SR.RootCannotHaveParent()); }
public static void FileTargetCouldNotCreateOutputStream(Exception ex, string name) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureCouldNotCreateOutputStream, SR.FileTargetCouldNotCreateOutputStream(name, ex)); }
public static void DetectedCycleInLogParents(string name) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureDetectedCycleForwardingLogger, SR.DetectedCycleInLogParents(name)); }
public static void FinalCaptureFailed(Exception ex) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnFinalCapture, SR.FinalCaptureFailed(ex)); }
public static void InstrumentCaptureFailed(string name, Exception ex) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnInstrumentCapture, SR.InstrumentCaptureFailed(name, ex)); }
public static void FailedToBuildLogger(string name, Exception ex) { LogLog.Write(LoggerLevel.Error, LogErrorCode.FailureOnBuildLogger, SR.FailedToBuildLogger(name, ex)); }
public static void RootLoggerInitializing(int loggerCount) { LogLog.Write(LoggerLevel.Trace, LogErrorCode.Initializing, SR.RootLoggerInitializing(loggerCount)); }
public static void RootLoggerDoneInitializing() { LogLog.Write(LoggerLevel.Trace, LogErrorCode.Initialized, SR.RootLoggerDoneInitializing()); }