diff --git a/src/Components/Server/src/Circuits/RemoteUriHelper.cs b/src/Components/Server/src/Circuits/RemoteUriHelper.cs index ab8390316e..f3e70d6f14 100644 --- a/src/Components/Server/src/Circuits/RemoteUriHelper.cs +++ b/src/Components/Server/src/Circuits/RemoteUriHelper.cs @@ -58,7 +58,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits typeof(RemoteUriHelper).Assembly.GetName().Name, nameof(NotifyLocationChanged)); - _logger.LogInformation($"{nameof(RemoteUriHelper)} initialized."); + _logger.LogDebug($"{nameof(RemoteUriHelper)} initialized."); } /// diff --git a/src/Components/Server/src/ComponentHub.cs b/src/Components/Server/src/ComponentHub.cs index 0b41cfc2f7..84b0267e6b 100644 --- a/src/Components/Server/src/ComponentHub.cs +++ b/src/Components/Server/src/ComponentHub.cs @@ -73,7 +73,7 @@ namespace Microsoft.AspNetCore.Components.Server var endpointFeature = Context.GetHttpContext().Features.Get(); var endpoint = endpointFeature?.Endpoint; - _logger.LogInformation($"No components registered in the current endpoint '{endpoint.DisplayName}'."); + _logger.LogDebug($"No components registered in the current endpoint '{endpoint.DisplayName}'."); // No components preregistered so return. This is totally normal if the components were prerendered. return null; @@ -131,7 +131,7 @@ namespace Microsoft.AspNetCore.Components.Server /// public void OnRenderCompleted(long renderId, string errorMessageOrNull) { - _logger.LogInformation($"Received confirmation for batch {renderId}."); + _logger.LogDebug($"Received confirmation for batch {renderId}."); EnsureCircuitHost().Renderer.OnRenderCompleted(renderId, errorMessageOrNull); }