From 5807625a4c0466c4cc19f24411f8c37d80c92db9 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Wed, 19 Aug 2015 08:43:20 -0700 Subject: [PATCH] Fix #2996 - Make InnerAttribute logs Verbose --- src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs b/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs index d53047975c..8122509cbc 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs @@ -133,7 +133,7 @@ public async Task RouteAsync([NotNull] RouteContext context) continue; } - _logger.LogInformation( + _logger.LogVerbose( "Request successfully matched the route with name '{RouteName}' and template '{RouteTemplate}'.", matchingEntry.RouteName, matchingEntry.RouteTemplate);