Fix #91 - Make LoggerExtensions public but in an internal namespace

This commit is contained in:
Ryan Nowak 2014-10-22 18:14:05 -07:00
parent 02a0a218b9
commit db140c9f21
6 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@
using System;
namespace Microsoft.AspNet.Routing.Logging
namespace Microsoft.AspNet.Routing.Logging.Internal
{
public static class LogFormatter
{

View File

@ -3,9 +3,9 @@
using Microsoft.Framework.Logging;
namespace Microsoft.AspNet.Routing.Logging
namespace Microsoft.AspNet.Routing.Logging.Internal
{
internal static class LoggerExtensions
public static class LoggerExtensions
{
public static void WriteValues([NotNull] this ILogger logger, object values)
{

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Routing.Logging;
using Microsoft.AspNet.Routing.Logging.Internal;
using Microsoft.Framework.DependencyInjection;
using Microsoft.Framework.Logging;

View File

@ -4,6 +4,7 @@
using System.Collections.Generic;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Routing.Logging;
using Microsoft.AspNet.Routing.Logging.Internal;
using Microsoft.Framework.Logging;
namespace Microsoft.AspNet.Routing

View File

@ -6,6 +6,7 @@ using Microsoft.AspNet.Http;
using Microsoft.AspNet.RequestContainer;
using Microsoft.AspNet.Routing;
using Microsoft.AspNet.Routing.Logging;
using Microsoft.AspNet.Routing.Logging.Internal;
using Microsoft.Framework.DependencyInjection;
using Microsoft.Framework.Logging;
using System;

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Routing.Logging;
using Microsoft.AspNet.Routing.Logging.Internal;
using Microsoft.Framework.DependencyInjection;
using Microsoft.Framework.Logging;