From f41b6e4d1053ec67cfc7e7e854cb9cb7df07a4a1 Mon Sep 17 00:00:00 2001 From: Luke Waters Date: Thu, 19 Feb 2015 15:14:41 -0800 Subject: [PATCH] other interface implementation --- .../Microsoft.AspNet.Routing.Tests/Logging/TestLoggerFactory.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Microsoft.AspNet.Routing.Tests/Logging/TestLoggerFactory.cs b/test/Microsoft.AspNet.Routing.Tests/Logging/TestLoggerFactory.cs index 18e4332a22..1f9b90baab 100644 --- a/test/Microsoft.AspNet.Routing.Tests/Logging/TestLoggerFactory.cs +++ b/test/Microsoft.AspNet.Routing.Tests/Logging/TestLoggerFactory.cs @@ -10,6 +10,8 @@ namespace Microsoft.AspNet.Routing private TestSink _sink; private bool _enabled; + public LogLevel MinimumLevel { get; set; } + public TestLoggerFactory(TestSink sink, bool enabled) { _sink = sink;