From dcec94f6d9385eeb99b5cc7751b2914b7d4c24ac Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 22 Oct 2015 10:21:36 -0700 Subject: [PATCH] Change ActionMethodExecuted to be Verbose --- .../Logging/ControllerActionInvokerLoggerExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerActionInvokerLoggerExtensions.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerActionInvokerLoggerExtensions.cs index f1a590c291..1cfbb6008d 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerActionInvokerLoggerExtensions.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerActionInvokerLoggerExtensions.cs @@ -21,7 +21,7 @@ namespace Microsoft.AspNet.Mvc.Logging "Executing action method {ActionName} with arguments ({Arguments}) - ModelState is {ValidationState}'"); _actionMethodExecuted = LoggerMessage.Define( - LogLevel.Information, + LogLevel.Verbose, 2, "Executed action method {ActionName}, returned result {ActionResult}.'"); }