From 60d9615f00b4270c27a08a852b48115de4e64d16 Mon Sep 17 00:00:00 2001 From: Joni Date: Fri, 7 Dec 2018 07:40:09 +0000 Subject: [PATCH] Add space after period to the routing log message --- .../src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Routing/src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs b/src/Routing/src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs index 60342bfb1c..64c59857c6 100644 --- a/src/Routing/src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs +++ b/src/Routing/src/Microsoft.AspNetCore.Routing/DefaultLinkGenerator.cs @@ -396,13 +396,13 @@ namespace Microsoft.AspNetCore.Routing LogLevel.Debug, EventIds.TemplateFailedRequiredValues, "Failed to process the template {Template} for {Endpoint}. " + - "A required route value is missing, or has a different value from the required default values." + + "A required route value is missing, or has a different value from the required default values. " + "Supplied ambient values {AmbientValues} and {Values} with default values {Defaults}"); private static readonly Action _templateFailedConstraint = LoggerMessage.Define( LogLevel.Debug, EventIds.TemplateFailedConstraint, - "Failed to process the template {Template} for {Endpoint}. " + + "Failed to process the template {Template} for {Endpoint}. " + "The constraint {Constraint} for parameter {ParameterName} failed with values {Values}"); private static readonly Action _templateFailedExpansion = LoggerMessage.Define(