270 references to LogDebug
aspire (30)
DotNetCliRunner.cs (10)
392logger.LogDebug("Running dotnet with args: {Args}", string.Join(" ", args));
421logger.LogDebug("Failed to start dotnet process with args: {Args}", string.Join(" ", args));
426logger.LogDebug("Started dotnet with PID: {ProcessId}", process.Id);
429logger.LogDebug("Waiting for dotnet process to exit with PID: {ProcessId}", process.Id);
435logger.LogDebug("dotnet process with PID: {ProcessId} has not exited, killing it.", process.Id);
440logger.LogDebug("dotnet process with PID: {ProcessId} has exited with code: {ExitCode}", process.Id, process.ExitCode);
450logger.LogDebug(
459logger.LogDebug(
479logger.LogDebug("Starting backchannel connection to AppHost at {SocketPath}", socketPath);
490logger.LogDebug("Connected to AppHost backchannel at {SocketPath}", socketPath);
Projects\ProjectLocator.cs (9)
28logger.LogDebug("Searching for project files in {SearchDirectory}", searchDirectory.FullName);
37logger.LogDebug("Found {ProjectFileCount} project files in {SearchDirectory}", projectFiles.Length, searchDirectory.FullName);
47logger.LogDebug("Checking project file {ProjectFile}", projectFile.FullName);
52logger.LogDebug("Found AppHost project file {ProjectFile} in {SearchDirectory}", projectFile.FullName, searchDirectory.FullName);
114logger.LogDebug("Finding project file in {CurrentDirectory}", currentDirectory);
125logger.LogDebug("Using project file {ProjectFile}", projectFile.FullName);
136logger.LogDebug("No project file specified, searching for *.csproj files in {CurrentDirectory}", currentDirectory);
140logger.LogDebug("Found {ProjectFileCount} project files.", appHostProjects.Count);
190logger.LogDebug("Creating settings file at {SettingsFilePath}", settingsFile.FullName);
Aspire.Dashboard (37)
Components\Pages\ConsoleLogs.razor.cs (17)
163Logger.LogDebug("Loading task completed.");
167Logger.LogDebug("Load task canceled.");
186Logger.LogDebug("Received initial resource snapshot with {ResourceCount} resources.", snapshot.Length);
206Logger.LogDebug("No resource selected.");
246Logger.LogDebug("Selected console resource from name {ResourceName}.", ResourceName);
259Logger.LogDebug("Initializing console logs view model.");
270Logger.LogDebug("New resource {ResourceName} selected.", selectedResourceName);
276Logger.LogDebug("Creating new subscription {SubscriptionId}.", newConsoleLogsSubscription.SubscriptionId);
283Logger.LogDebug("Canceling subscription {SubscriptionId} to {ResourceName}.", s.SubscriptionId, s.Name);
300Logger.LogDebug("Creating new log entries collection.");
464Logger.LogDebug("Starting log subscription {SubscriptionId}.", newConsoleLogsSubscription.SubscriptionId);
469Logger.LogDebug("Subscribing to console logs with subscription {SubscriptionId} to resource {ResourceName}.", newConsoleLogsSubscription.SubscriptionId, newConsoleLogsSubscription.Name);
481Logger.LogDebug("Adding {PauseIntervalsCount} pause intervals on initial logs load.", pauseIntervals.Length);
530Logger.LogDebug("Subscription {SubscriptionId} finished watching logs for resource {ResourceName}.", newConsoleLogsSubscription.SubscriptionId, newConsoleLogsSubscription.Name);
666Logger.LogDebug("Console logs paused new value: {IsPausedNewValue}", isPaused);
677Logger.LogDebug("Inserting new pause log entry starting at {StartTimestamp}.", timestamp);
685Logger.LogDebug("Updating pause log entry starting at {StartTimestamp} with end of {EndTimestamp}.", pause.StartTime, timestamp);
Aspire.Hosting (50)
ApplicationModel\ResourceNotificationService.cs (8)
123_logger.LogDebug("Waiting for resource '{Name}' to enter one of the target state: {TargetStates}", resourceName, string.Join(", ", targetStates));
134_logger.LogDebug("Finished waiting for resource '{Name}'. Resource state is '{State}'.", resourceName, stateText);
276_logger.LogDebug("Waiting for resource '{Name}' to enter the '{State}' state.", resourceName, HealthStatus.Healthy);
285_logger.LogDebug("Finished waiting for resource '{Name}'.", resourceName);
409_logger.LogDebug("Waiting for resource '{Name}' to match predicate.", resourceName);
411_logger.LogDebug("Finished waiting for resource '{Name}'.", resourceName);
525_logger.LogDebug("Resource {Resource}/{ResourceId} changed state: {PreviousState} -> {NewState}", resource.Name, resourceId, previousStateText, newStateText);
530_logger.LogDebug("Resource {Resource}/{ResourceId} changed state: {NewState}", resource.Name, resourceId, newStateText);
Dcp\DcpExecutor.cs (18)
136_logger.LogDebug("Cancellation received during application startup.");
296_logger.LogDebug("Watching over DCP {ResourceType} resources.", typeof(T).Name);
317_logger.LogDebug("Cancellation received while watching {ResourceType} resources.", typeof(T).Name);
325_logger.LogDebug("Stopped watching {ResourceType} resources.", typeof(T).Name);
505_logger.LogDebug("Starting log streaming for {ResourceName}.", resource.Metadata.Name);
522_logger.LogDebug("Log streaming for {ResourceName} was cancelled.", resource.Metadata.Name);
1476_logger.LogDebug("Stopping resource '{ResourceName}'...", resourceReference.DcpResourceName);
1491_logger.LogDebug("Container '{ResourceName}' was stopped.", resourceReference.DcpResourceName);
1496_logger.LogDebug("Container '{ResourceName}' is still running; trying again to stop it...", resourceReference.DcpResourceName);
1506_logger.LogDebug("Executable '{ResourceName}' was stopped.", resourceReference.DcpResourceName);
1511_logger.LogDebug("Executable '{ResourceName}' is still running; trying again to stop it...", resourceReference.DcpResourceName);
1547_logger.LogDebug("Starting {ResourceType} '{ResourceName}'.", resourceType, appResource.DcpResourceName);
1585_logger.LogDebug("Ensuring '{ResourceName}' is deleted.", resourceName);
1599_logger.LogDebug("Delete request for '{ResourceName}' successfully completed. Resource to delete has UID '{Uid}'.", resourceName, uid);
1603_logger.LogDebug("Delete request for '{ResourceName}' returned NotFound.", resourceName);
1616_logger.LogDebug("Polling DCP to check if '{ResourceName}' is deleted...", resourceName);
1618_logger.LogDebug("Get request for '{ResourceName}' returned resource with UID '{Uid}'.", resourceName, uid);
1624_logger.LogDebug("Get request for '{ResourceName}' returned NotFound.", resourceName);
Health\ResourceHealthCheckService.cs (9)
115logger.LogDebug("Resource '{Resource}' has no health checks to monitor.", resource.Name);
122logger.LogDebug("Resource '{Resource}' health checks to monitor: {HeathCheckKeys}", resource.Name, string.Join(", ", registrationKeysToCheck));
242logger.LogDebug("Resource '{Resource}' is ready.", resource.Name);
249logger.LogDebug("Publishing ResourceReadyEvent for '{Resource}'.", resource.Name);
254logger.LogDebug("Waiting for ResourceReadyEvent for '{Resource}'.", resource.Name);
259logger.LogDebug("ResourceReadyEvent for '{Resource}' completed.", resource.Name);
261logger.LogDebug("Publishing the result of ResourceReadyEvent for '{Resource}'.", resource.Name);
318_logger.LogDebug("Starting health monitoring for resource '{Resource}'.", _resourceName);
328_logger.LogDebug("Stopping health monitoring for resource '{Resource}'.", _resourceName);
Aspire.Hosting.Azure (1)
Aspire.Hosting.MySql (2)
Aspire.Hosting.PostgreSQL (3)
Aspire.Hosting.SqlServer (2)
Aspire.Hosting.Testing.Tests (1)
AzureAppServicesHostingStartupSample (1)
AzureAppServicesSample (1)
ClientSample (2)
Http3SampleApp (3)
IIS.FunctionalTests (2)
IIS.LongTests (2)
IIS.NewHandler.FunctionalTests (2)
IIS.NewShim.FunctionalTests (2)
IIS.ShadowCopy.Tests (2)
IISExpress.FunctionalTests (2)
IISSample (1)
InMemory.FunctionalTests (7)
Interop.FunctionalTests (6)
InteropClient (3)
Kestrel.SampleApp (1)
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
Microsoft.AspNetCore.Authorization.Policy (1)
Microsoft.AspNetCore.ConcurrencyLimiter.Tests (4)
Microsoft.AspNetCore.DataProtection (1)
Microsoft.AspNetCore.Hosting.Tests (4)
Microsoft.AspNetCore.Http.Results (3)
Microsoft.AspNetCore.InternalTesting.Tests (3)
Microsoft.AspNetCore.Mvc.Core (6)
Microsoft.AspNetCore.Server.IntegrationTesting (8)
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (6)
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (5)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (3)
Microsoft.AspNetCore.SignalR.Client.Tests (1)
Microsoft.AspNetCore.SpaProxy (1)
Microsoft.AspNetCore.StaticAssets (3)
Microsoft.AspNetCore.StaticFiles (3)
Microsoft.AspNetCore.StaticFiles.FunctionalTests (3)
Microsoft.AspNetCore.WebSockets (1)
Microsoft.CodeAnalysis.LanguageServer (15)
Microsoft.Extensions.Caching.Memory (3)
Microsoft.Extensions.Diagnostics.Testing.Tests (21)
OrderProcessor (1)
Sockets.FunctionalTests (2)
Stress.TelemetryService (2)
SystemdTestApp (1)