Fixing an issue that caused loggers to be registered twice in some conditions.

--HG--
branch : dev
This commit is contained in:
Suha Can 2010-12-03 16:48:41 -08:00
parent fadcc4ef6e
commit 918b9c611b

View File

@ -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);
}