From 5de2bc82432b9290b8a164ce6502d221f0f588f0 Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Fri, 15 Aug 2014 16:34:14 -0700 Subject: [PATCH] Implementing ILoggerFactory.AddProvider --- .../Logging/NullLoggerFactory.cs | 5 +++++ .../Logging/TestLoggerFactory.cs | 5 +++++ .../NullLoggerFactory.cs | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/test/Microsoft.AspNet.Mvc.Core.Test/Logging/NullLoggerFactory.cs b/test/Microsoft.AspNet.Mvc.Core.Test/Logging/NullLoggerFactory.cs index 61b3dc076e..cc2328b521 100644 --- a/test/Microsoft.AspNet.Mvc.Core.Test/Logging/NullLoggerFactory.cs +++ b/test/Microsoft.AspNet.Mvc.Core.Test/Logging/NullLoggerFactory.cs @@ -13,5 +13,10 @@ namespace Microsoft.AspNet.Mvc { return NullLogger.Instance; } + + public void AddProvider(ILoggerProvider provider) + { + + } } } \ No newline at end of file diff --git a/test/Microsoft.AspNet.Mvc.Core.Test/Logging/TestLoggerFactory.cs b/test/Microsoft.AspNet.Mvc.Core.Test/Logging/TestLoggerFactory.cs index 95633d1410..3cb881b4f8 100644 --- a/test/Microsoft.AspNet.Mvc.Core.Test/Logging/TestLoggerFactory.cs +++ b/test/Microsoft.AspNet.Mvc.Core.Test/Logging/TestLoggerFactory.cs @@ -18,5 +18,10 @@ namespace Microsoft.AspNet.Mvc { return new TestLogger(name, _sink); } + + public void AddProvider(ILoggerProvider provider) + { + + } } } \ No newline at end of file diff --git a/test/Microsoft.AspNet.Mvc.FunctionalTests/NullLoggerFactory.cs b/test/Microsoft.AspNet.Mvc.FunctionalTests/NullLoggerFactory.cs index 56f9996fbc..a5a0462970 100644 --- a/test/Microsoft.AspNet.Mvc.FunctionalTests/NullLoggerFactory.cs +++ b/test/Microsoft.AspNet.Mvc.FunctionalTests/NullLoggerFactory.cs @@ -11,6 +11,11 @@ namespace Microsoft.AspNet.Mvc { return NullLogger.Instance; } + + public void AddProvider(ILoggerProvider provider) + { + + } } public class NullLogger : ILogger