From 918b9c611b88590f1166e87a830a35456b7551cb Mon Sep 17 00:00:00 2001 From: Suha Can Date: Fri, 3 Dec 2010 16:48:41 -0800 Subject: [PATCH] Fixing an issue that caused loggers to be registered twice in some conditions. --HG-- branch : dev --- src/Orchard/Logging/ILogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard/Logging/ILogger.cs b/src/Orchard/Logging/ILogger.cs index 6e7963609..045db2ef8 100644 --- a/src/Orchard/Logging/ILogger.cs +++ b/src/Orchard/Logging/ILogger.cs @@ -9,7 +9,7 @@ namespace Orchard.Logging { Fatal } - public interface ILogger : ISingletonDependency { + public interface ILogger { bool IsEnabled(LogLevel level); void Log(LogLevel level, Exception exception, string format, params object[] args); }