From ca397dc583bec0441c6e954018240df187abcb27 Mon Sep 17 00:00:00 2001 From: eeichinger Date: Thu, 16 Apr 2009 17:15:09 +0000 Subject: [PATCH] fixed broken build --- .../Aspects/Exception/CaptureOutputLogger.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/Spring/Spring.Aop.Tests/Aspects/Exception/CaptureOutputLogger.cs b/test/Spring/Spring.Aop.Tests/Aspects/Exception/CaptureOutputLogger.cs index 6003ac69..9d1bd996 100644 --- a/test/Spring/Spring.Aop.Tests/Aspects/Exception/CaptureOutputLogger.cs +++ b/test/Spring/Spring.Aop.Tests/Aspects/Exception/CaptureOutputLogger.cs @@ -17,9 +17,11 @@ namespace Spring.Aspects.Exceptions : base(NAME, LogLevel.All, false, false, null) {} #else - public CaptureOutputLogger() - : base(false, NAME, LogLevel.All, true, false, false, null) - { } + public CaptureOutputLogger() + : base(NAME, LogLevel.All, false, false, null) +// TODO: use this line when upgrading to Common.Logging 2.0: +// : base(false, NAME, LogLevel.All, true, false, false, null) + { } #endif // private LogLevel _currentLogLevel = LogLevel.All;