Skip to content

Commit

Permalink
chore: further log message changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpop-zengenti committed Sep 4, 2024
1 parent a62f35c commit d006be0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ public CorePublishingService(
};

var messageSuffix =
$"when calling IPublishingApi.GetEndpointForRequest for requestContext {requestContext.ToJson()} and path {originUri.AbsolutePath}.";
$"when calling IPublishingApi.GetEndpointForRequest for requestContext {requestContext.ToJson()}";
if (originUri != null)
{
messageSuffix = messageSuffix += " and path {originUri.AbsolutePath}.";
}

ExceptionDispatchInfo? exceptionDispatchInfo = null;
try
Expand Down

0 comments on commit d006be0

Please sign in to comment.