1 write to _logger
Aspire.Dashboard (1)
ServiceClient\DashboardClient.cs (1)
115
_logger
= loggerFactory.CreateLogger<DashboardClient>();
15 references to _logger
Aspire.Dashboard (15)
ServiceClient\DashboardClient.cs (15)
120
_logger
.LogDebug("{ConfigKey} is not specified. Dashboard client services are unavailable.", DashboardConfigNames.ResourceServiceUrlName.ConfigKey);
127
_logger
.LogDebug("Dashboard configured to connect to: {Address}", address);
290
_logger
.LogDebug("Dashboard connection state changed to {State}.", state);
369
_logger
.LogError(ex, "Error loading data from the resource service. For troubleshooting, see {TroubleshootingUrl}", TroubleshootingUrl);
392
_logger
.LogDebug("Waiting {Delay} before next connection attempt.", delay);
407
_logger
.LogDebug("Reconnect delay cancelled, retrying immediately.");
451
_logger
.LogError(ex, "Error #{ErrorCount} connecting to the resource service. For troubleshooting, see {TroubleshootingUrl}", errorCount, TroubleshootingUrl);
540
_logger
.LogError(ex, "Error #{ErrorCount} watching {WatchName}. For troubleshooting, see {TroubleshootingUrl}", retryContext.ErrorCount, actionName, TroubleshootingUrl);
597
var viewModel = resource.ToViewModel(CalculateReplicaIndex(resource.DisplayName), _knownPropertyLookup,
_logger
);
618
var viewModel = change.Upsert.ToViewModel(CalculateReplicaIndex(change.Upsert.DisplayName), _knownPropertyLookup,
_logger
);
702
_logger
.LogWarning("Server does not support interactions.");
719
_logger
.LogError(ex, "Error writing to interaction request stream.");
1086
_logger
.LogError(ex, "Error executing command \"{CommandName}\" on resource \"{ResourceName}\": {StatusCode}", command.Name, resourceName, ex.StatusCode);
1165
await TaskHelpers.WaitIgnoreCancelAsync(_connection,
_logger
, "Unexpected error from connection task.").ConfigureAwait(false);
1182
_resourceByName[data.Name] = data.ToViewModel(CalculateReplicaIndex(data.DisplayName), _knownPropertyLookup,
_logger
);