You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.Information("{CorrelationId} {Action} successful for route {RouteUrl} with response {StatusCode} {Content}",messageData.CorrelationId,action,routingResult.FullRouteLink,routingResult.StatusCode,routingResult.ResponseContent);
88
-
}
89
-
else
90
-
{
91
-
logger.Information("{CorrelationId} {Action} failed for route {RouteUrl} with status code {StatusCode}",messageData.CorrelationId,action,routingResult.FullRouteLink,routingResult.StatusCode);
92
-
}
69
+
logger.Information("{CorrelationId} {Action} {Success} for route {RouteUrl} with response {StatusCode} \"{Content}\"",messageData.CorrelationId,action,routingResult.RoutingSuccessful?"successful":"failed",routingResult.FullRouteLink,routingResult.StatusCode,routingResult.ResponseContent);
logger.Information("{CorrelationId} {Action} not {Reason} for [{HttpString}]",messageData.CorrelationId,action,routingResult.RouteLinkType==LinkType.None?"configured":"supported",messageData.HttpString);
0 commit comments