Fix log message in RemoteRenderer

This commit is contained in:
Steve Sanderson 2019-04-04 12:39:50 +01:00
parent 258d34e382
commit eaf63a670d
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ namespace Microsoft.AspNetCore.Components.Browser.Rendering
else
{
var message = $"Completing batch {entry.BatchId} " +
errorMessageOrNull == null ? "without error." : "with error.";
(errorMessageOrNull == null ? "without error." : "with error.");
_logger.LogDebug(message);
CompleteRender(entry.CompletionSource, errorMessageOrNull);