Hello,
I would like to get the following test to pass, I've searched the
archives and cannot find a definite resolution.
Hierarchy repository =
(Hierarchy)log4net.LogManager.GetLoggerRepository();
repository.Shutdown();
LogManager.ResetConfiguration();
AppenderSkeleton stringLogger = new TextWriterAppender(
new PatternLayout("%4timestamp [%12.12thread] %-5level
%-55.55type{1}: %-40.40message [%3line]%newline%exception%newline"),
writer);
stringLogger.Threshold = Level.Debug;
Assert.IsTrue(Log.IsDebugEnabled, "Debug should be
enabled!");
Any help greatly appreciated!
/mawi