From 5632a330986b4e915ba351e57e477062d81a58fd Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Mon, 22 Jun 2015 14:21:53 -0700 Subject: [PATCH] Removed unnecessary log statement --- src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs b/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs index 21ab82d367..d53047975c 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Routing/InnerAttributeRoute.cs @@ -158,11 +158,6 @@ public async Task RouteAsync([NotNull] RouteContext context) break; } } - - if (!context.IsHandled) - { - _logger.LogVerbose("Request did not match any attribute route."); - } } ///