270 references to LogDebug
aspire (30)
Backchannel\AppHostBackchannel.cs (10)
36logger.LogDebug("Sent ping with timestamp {Timestamp}", timestamp); 56logger.LogDebug("Requesting stop"); 70logger.LogDebug("Requesting dashboard URL"); 86logger.LogDebug("Requesting resource states"); 93logger.LogDebug("Received resource states async enumerable"); 112logger.LogDebug("Connecting to AppHost backchannel at {SocketPath}", socketPath); 116logger.LogDebug("Connected to AppHost backchannel at {SocketPath}", socketPath); 152logger.LogDebug("Requesting publishing activities."); 159logger.LogDebug("Received publishing activities."); 173logger.LogDebug("Requesting capabilities");
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);
NuGetPackageCache.cs (1)
35logger.LogDebug("Getting integrations from NuGet");
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\Controls\Chart\ChartContainer.razor.cs (1)
202Logger.LogDebug(
Components\Controls\LogViewer.razor.cs (3)
49Logger.LogDebug("Log entries changed."); 67Logger.LogDebug("Initializing log viewer."); 92Logger.LogDebug("Disposing log viewer.");
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);
Configuration\PostConfigureDashboardOptions.cs (1)
27_logger.LogDebug($"PostConfigure {nameof(DashboardOptions)} with name '{name}'.");
Configuration\ValidateDashboardOptions.cs (1)
25_logger.LogDebug($"Validating {nameof(DashboardOptions)}.");
DashboardWebApplication.cs (2)
588logger.LogDebug("Browser and OTLP accessible on a single endpoint."); 620logger.LogDebug("Browser and OTLP accessible on a single endpoint.");
Model\BrowserTimeProvider.cs (1)
36_logger.LogDebug("Browser time zone set to '{TimeZone}' with UTC offset {UtcOffset}.", timeZoneInfo.Id, timeZoneInfo.BaseUtcOffset);
Model\ValidateTokenMiddleware.cs (1)
33_logger.LogDebug($"Request to validate token URL but auth mode isn't set to {FrontendAuthMode.BrowserToken}.");
Otlp\Model\OtlpHelpers.cs (2)
232context.Logger.LogDebug("Duplicate attribute {Name} with different value. Last value wins.", attribute.Key); 309context.Logger.LogDebug("Duplicate attribute {Name} with different value. Last value wins.", attribute.Key);
Otlp\OtlpLogsService.cs (1)
26_logger.LogDebug("Processed logs export. Failure count: {FailureCount}", addContext.FailureCount);
Otlp\OtlpMetricsService.cs (1)
26_logger.LogDebug("Processed metrics export. Failure count: {FailureCount}", addContext.FailureCount);
Otlp\OtlpTraceService.cs (1)
26_logger.LogDebug("Processed trace export. Failure count: {FailureCount}", addContext.FailureCount);
ResourceService\DashboardClient.cs (2)
88_logger.LogDebug($"{DashboardConfigNames.ResourceServiceUrlName.ConfigKey} is not specified. Dashboard client services are unavailable."); 95_logger.LogDebug("Dashboard configured to connect to: {Address}", address);
ShortcutManager.cs (1)
28_logger.LogDebug($"Received shortcut of type {shortcut}");
Telemetry\DashboardTelemetryService.cs (2)
58_logger.LogDebug("Initializing telemetry service."); 60_logger.LogDebug("Initialized telemetry service. Telemetry sender state: {TelemetrySenderState}", _telemetrySender.State);
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);
Backchannel\BackchannelService.cs (4)
32logger.LogDebug("Backchannel socket path was not specified."); 36logger.LogDebug("Listening for backchannel connection on socket path: {SocketPath}", unixSocketPath); 65logger.LogDebug("Accepted backchannel connection from {RemoteEndPoint}", clientSocket.RemoteEndPoint); 71logger.LogDebug("Backchannel service was cancelled: {Message}", ex.Message);
Dashboard\DashboardLifecycleHook.cs (2)
422defaultDashboardLogger.LogDebug("Failed to parse dashboard log line as JSON: {LogLine}", logLine.Content); 449defaultDashboardLogger.LogDebug("Stopped reading dashboard logs.");
Dashboard\DashboardServiceData.cs (1)
68logger.LogDebug("Updating resource snapshot for {Name}/{DisplayName}: {State}", snapshot.Name, snapshot.DisplayName, snapshot.State);
Dashboard\DashboardServiceHost.cs (1)
63_logger.LogDebug("Dashboard is not enabled so skipping hosting the resource service.");
Dcp\DcpDependencyCheck.cs (2)
224logger.LogDebug("The error from the container runtime check was: {Error}", error); 251logger.LogDebug("The error from the container runtime check was: {Error}", error);
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);
Dcp\DcpPipelineBuilder.cs (1)
25logger.LogDebug("Retrying check for deleted resource. Attempt: {Attempt}. Error message: {ErrorMessage}", retry.AttemptNumber, retry.Outcome.Exception?.Message);
Dcp\KubernetesService.cs (2)
501logger.LogDebug( 555logger.LogDebug(
DistributedApplicationRunner.cs (1)
29logger.LogDebug("Waiting for backchannel connection before publishing.");
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);
Publishing\ResourceContainerImageBuilder.cs (1)
129logger.LogDebug(
Aspire.Hosting.Azure (1)
AzurePublishingContext.cs (1)
341logger.LogDebug("Writing Bicep module {BicepName}.bicep to {TargetPath}", MainInfrastructure.BicepName, outputDirectoryPath);
Aspire.Hosting.MySql (2)
MySqlBuilderExtensions.cs (2)
131logger.LogDebug("Creating database '{DatabaseName}'", sqlDatabase.DatabaseName); 151logger.LogDebug("Database '{DatabaseName}' created successfully", sqlDatabase.DatabaseName);
Aspire.Hosting.PostgreSQL (3)
PostgresBuilderExtensions.cs (3)
564logger.LogDebug("Creating database '{DatabaseName}'", npgsqlDatabase.DatabaseName); 572logger.LogDebug("Database '{DatabaseName}' created successfully", npgsqlDatabase.DatabaseName); 577logger.LogDebug("Database '{DatabaseName}' already exists", npgsqlDatabase.DatabaseName);
Aspire.Hosting.SqlServer (2)
SqlServerBuilderExtensions.cs (2)
237logger.LogDebug("Creating database '{DatabaseName}'", sqlDatabase.DatabaseName); 294logger.LogDebug("Database '{DatabaseName}' created successfully", sqlDatabase.DatabaseName);
Aspire.Hosting.Testing.Tests (1)
ResourceLoggerForwarderServiceTests.cs (1)
98resourceLogger.LogDebug("Test debug message");
AzureAppServicesHostingStartupSample (1)
Startup.cs (1)
14logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path);
AzureAppServicesSample (1)
Startup.cs (1)
25logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path);
ClientSample (2)
LoggingMessageHandler.cs (2)
27_logger.LogDebug("Send: {0} {1}", request.Method, request.RequestUri); 29_logger.LogDebug("Recv: {0} {1}", (int)result.StatusCode, request.RequestUri);
Http3SampleApp (3)
src\Shared\HttpClient\HttpEventSourceListener.cs (3)
20_logger.LogDebug($"Starting {nameof(HttpEventSourceListener)}."); 77_logger?.LogDebug(message); 95_logger?.LogDebug($"Stopping {nameof(HttpEventSourceListener)}.");
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IIS.ShadowCopy.Tests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IISExpress.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (2)
88logger?.LogDebug($"Processing {target.FullName}"); 91logger?.LogDebug($" Copying {fileInfo.Name}");
IISSample (1)
Startup.cs (1)
39logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path);
InMemory.FunctionalTests (7)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (5)
204Logger.LogDebug("Advancing timeProvider {timeSpan}.", timeSpan); 469Logger.LogDebug($"Reusing context for request stream {requestStreamId}."); 1224_testBase.Logger.LogDebug($"Disposing stream {StreamId}"); 1240_testBase.Logger.LogDebug($"Pooling stream {StreamId} for reuse."); 1246_testBase.Logger.LogDebug($"Can't reuse stream {StreamId}. Aborted: {_isAborted}, Reader completed successfully: {_transportPipeReader.IsCompletedSuccessfully}, Writer completed successfully: {_transportPipeWriter.IsCompletedSuccessfully}.");
TestTransport\InMemoryTransportConnection.cs (1)
55_logger.LogDebug(@"Connection id ""{ConnectionId}"" closing because: ""{Message}""", ConnectionId, abortReason?.Message);
TlsListenerMiddlewareTests.cs (1)
42Logger.LogDebug("[Received TlsClientHelloBytesCallback] Connection: {0}; TLS client hello buffer: {1}", connection.ConnectionId, clientHelloBytes.Length);
Interop.FunctionalTests (6)
H2SpecCommands.cs (3)
232logger.LogDebug(args.Data); 246logger.LogDebug("H2spec has exited."); 296logger.LogDebug(results);
src\Shared\HttpClient\HttpEventSourceListener.cs (3)
20_logger.LogDebug($"Starting {nameof(HttpEventSourceListener)}."); 77_logger?.LogDebug(message); 95_logger?.LogDebug($"Stopping {nameof(HttpEventSourceListener)}.");
InteropClient (3)
src\Shared\HttpClient\HttpEventSourceListener.cs (3)
20_logger.LogDebug($"Starting {nameof(HttpEventSourceListener)}."); 77_logger?.LogDebug(message); 95_logger?.LogDebug($"Stopping {nameof(HttpEventSourceListener)}.");
Kestrel.SampleApp (1)
Startup.cs (1)
54logger.LogDebug($"Peer: {connectionFeature.RemoteIpAddress?.ToString()}:{connectionFeature.RemotePort}"
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectHandler.cs (2)
997Logger.LogDebug($"Unexpected token response format. Status Code: {(int)responseMessage.StatusCode}. Content-Type header is missing."); 1001Logger.LogDebug($"Unexpected token response format. Status Code: {(int)responseMessage.StatusCode}. Content-Type {responseMessage.Content.Headers.ContentType}.");
Microsoft.AspNetCore.Authorization.Policy (1)
AuthorizationMiddleware.cs (1)
180log.LogDebug("Policy authentication schemes {policyName} did not succeed", String.Join(", ", policy.AuthenticationSchemes));
Microsoft.AspNetCore.ConcurrencyLimiter.Tests (4)
src\Shared\AsyncEnumerableExtensions.cs (2)
21logger.LogDebug("Operation {OperationName} completed with value {Value}.", operationName, value); 25logger.LogDebug("Operation {OperationName} expected {ExpectedValue} but got {Value}.", operationName, expectedValue, value);
src\Shared\EventSource.Testing\TestCounterListener.cs (2)
54_logger.LogDebug("Counter {CounterName} on event source {EventSourceName} has increment value {Value}.", counter, eventData.EventSource.Name, increment); 58_logger.LogDebug("Counter {CounterName} on event source {EventSourceName} has mean value {Value}.", counter, eventData.EventSource.Name, mean);
Microsoft.AspNetCore.DataProtection (1)
TypeForwardingActivator.cs (1)
44_logger.LogDebug("Forwarded activator type request from {FromType} to {ToType}",
Microsoft.AspNetCore.Hosting.Tests (4)
src\Shared\AsyncEnumerableExtensions.cs (2)
21logger.LogDebug("Operation {OperationName} completed with value {Value}.", operationName, value); 25logger.LogDebug("Operation {OperationName} expected {ExpectedValue} but got {Value}.", operationName, expectedValue, value);
src\Shared\EventSource.Testing\TestCounterListener.cs (2)
54_logger.LogDebug("Counter {CounterName} on event source {EventSourceName} has increment value {Value}.", counter, eventData.EventSource.Name, increment); 58_logger.LogDebug("Counter {CounterName} on event source {EventSourceName} has mean value {Value}.", counter, eventData.EventSource.Name, mean);
Microsoft.AspNetCore.Http.Results (3)
src\Shared\RangeHelper\RangeHelper.cs (3)
50logger.LogDebug("Multiple ranges are not supported."); 61logger.LogDebug("Range header's value is invalid."); 72logger.LogDebug("Range header's value is invalid.");
Microsoft.AspNetCore.InternalTesting.Tests (3)
LoggedTestXunitTests.cs (3)
71Logger.LogDebug("Debug"); 81Logger.LogDebug("Debug"); 95Logger.LogDebug("Debug");
Microsoft.AspNetCore.Mvc.Core (6)
Infrastructure\ConfigureCompatibilityOptions.cs (3)
70_logger.LogDebug( 83_logger.LogDebug( 95_logger.LogDebug(
src\Shared\RangeHelper\RangeHelper.cs (3)
50logger.LogDebug("Multiple ranges are not supported."); 61logger.LogDebug("Range header's value is invalid."); 72logger.LogDebug("Range header's value is invalid.");
Microsoft.AspNetCore.Server.IntegrationTesting (8)
CachingApplicationPublisher.cs (2)
66logger.LogDebug($"Processing {target.FullName}"); 69logger.LogDebug($" Copying {fileInfo.Name}");
Common\LoggingHandler.cs (2)
20_logger.LogDebug("Sending {method} {url}", request.Method, request.RequestUri); 24_logger.LogDebug("Received {statusCode} {reasonPhrase} {url}", response.StatusCode, response.ReasonPhrase, request.RequestUri);
Deployers\NginxDeployer.cs (4)
148Logger.LogDebug("Using PID file: {pidFile}", pidFile); 149Logger.LogDebug("Using Error Log file: {errorLog}", pidFile); 150Logger.LogDebug("Using Access Log file: {accessLog}", pidFile); 218Logger.LogDebug("Deleting config file: {configFile}", _configFile);
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (6)
IISExpressDeployer.cs (4)
309Logger.LogDebug("Saving Config to {configPath}", DeploymentParameters.ServerConfigLocation); 416Logger.LogDebug("Deleting applicationHost.config file from {configLocation}", DeploymentParameters.ServerConfigLocation); 497Logger.LogDebug($"EnumWindow returned {ptr} belonging to {windowProcessId}"); 514Logger.LogDebug($"Skipping window {ptr} with class name {className}");
LoggingHandler.cs (1)
25_logger.LogDebug(request.ToString());
RetryHandler.cs (1)
51_logger.LogDebug($"Retrying {i + 1}th time after {RetryDelay.Seconds} sec.");
Microsoft.AspNetCore.Server.Kestrel.Core (4)
AnyIPListenOptions.cs (1)
37context.Logger.LogDebug(CoreStrings.FallbackToIPv4Any, IPEndPoint.Port, IPEndPoint.Port);
Internal\AddressBinder.cs (1)
161context.Logger.LogDebug(CoreStrings.BindingToDefaultAddress, Constants.DefaultServerAddress);
Internal\KestrelServerImpl.cs (1)
348Trace.LogDebug("Config reload token fired. Checking for changes...");
Middleware\Internal\LoggingStream.cs (1)
224_logger.LogDebug(builder.ToString());
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (5)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (5)
204Logger.LogDebug("Advancing timeProvider {timeSpan}.", timeSpan); 469Logger.LogDebug($"Reusing context for request stream {requestStreamId}."); 1224_testBase.Logger.LogDebug($"Disposing stream {StreamId}"); 1240_testBase.Logger.LogDebug($"Pooling stream {StreamId} for reuse."); 1246_testBase.Logger.LogDebug($"Can't reuse stream {StreamId}. Aborted: {_isAborted}, Reader completed successfully: {_transportPipeReader.IsCompletedSuccessfully}, Writer completed successfully: {_transportPipeWriter.IsCompletedSuccessfully}.");
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (3)
src\Shared\HttpClient\HttpEventSourceListener.cs (3)
20_logger.LogDebug($"Starting {nameof(HttpEventSourceListener)}."); 77_logger?.LogDebug(message); 95_logger?.LogDebug($"Stopping {nameof(HttpEventSourceListener)}.");
Microsoft.AspNetCore.SignalR.Client.Tests (1)
TestHttpMessageHandler.cs (1)
79_logger.LogDebug("Calling handlers for a '{Method}' going to '{Url}'.", request.Method, request.RequestUri);
Microsoft.AspNetCore.SpaProxy (1)
SpaProxyLaunchManager.cs (1)
260_logger.LogDebug($"Watch process '{stopProcess}' started.");
Microsoft.AspNetCore.StaticAssets (3)
src\Shared\RangeHelper\RangeHelper.cs (3)
50logger.LogDebug("Multiple ranges are not supported."); 61logger.LogDebug("Range header's value is invalid."); 72logger.LogDebug("Range header's value is invalid.");
Microsoft.AspNetCore.StaticFiles (3)
src\Shared\RangeHelper\RangeHelper.cs (3)
50logger.LogDebug("Multiple ranges are not supported."); 61logger.LogDebug("Range header's value is invalid."); 72logger.LogDebug("Range header's value is invalid.");
Microsoft.AspNetCore.StaticFiles.FunctionalTests (3)
src\Shared\RangeHelper\RangeHelper.cs (3)
50logger.LogDebug("Multiple ranges are not supported."); 61logger.LogDebug("Range header's value is invalid."); 72logger.LogDebug("Range header's value is invalid.");
Microsoft.AspNetCore.WebSockets (1)
WebSocketMiddleware.cs (1)
77_logger.LogDebug("Request origin {Origin} is not in the list of allowed origins.", originHeader.ToString());
Microsoft.CodeAnalysis.LanguageServer (15)
BrokeredServices\BrokeredServiceBridgeProvider.cs (1)
45_logger.LogDebug("Setting up brokered service bridge");
BrokeredServices\BrokeredServiceTraceListener.cs (2)
30_logger.LogDebug(message); 35_logger.LogDebug(message);
BrokeredServices\Services\BrokeredServiceBridgeManifest\BrokeredServiceBridgeManifestService.cs (1)
48_logger.LogDebug($"Proffered services: {string.Join(',', services.Select(s => s.ToString()))}");
DotnetCliHelper.cs (3)
61_logger.LogDebug(stdOutput.ToString()); 73_logger.LogDebug($"Running dotnet CLI command at {_dotnetExecutablePath.Value} in directory {workingDirectory} with arguments {arguments}"); 117_logger.LogDebug($"Using vstest console at {vstestConsole}");
FileBasedPrograms\VirtualProjectXmlProvider.cs (2)
45process.ErrorDataReceived += (sender, args) => _logger.LogDebug($"dotnet run-api: {args.Data}"); 53_logger.LogDebug($"dotnet run-api exited with exit code '{process.ExitCode}'.");
HostWorkspace\LanguageServerWorkspaceFactory.cs (1)
97_logger.LogDebug($"Solution-level analyzer at {analyzerPath} added to workspace.");
HostWorkspace\ProjectInitializationHandler.cs (1)
114_logger.LogDebug("Devkit project initialization completed");
Logging\LspServiceLogger.cs (1)
29public override void LogDebug(string message, params object[] @params) => _hostLogger.LogDebug(message, @params);
Testing\TestDiscoverer.cs (2)
84_logger.LogDebug(message: $"Potential test methods in range: {string.Join(Environment.NewLine, potentialTestMethods)}"); 107_logger.LogDebug($"Filtered {discoveredTests.Length} to {matchedTests.Count} tests");
Testing\TestRunner.TestRunHandler.cs (1)
46_logger.LogDebug($"Test run completed in {testRunCompleteArgs.ElapsedTimeInRunningTests}");
Microsoft.Extensions.Caching.Memory (3)
MemoryCache.cs (3)
527_logger.LogDebug("Overcapacity compaction triggered"); 552_logger.LogDebug($"Overcapacity compaction executing. Current size {currentSize}"); 565_logger.LogDebug($"Overcapacity compaction executed. New size {coherentState.Size}");
Microsoft.Extensions.Diagnostics.Testing.Tests (21)
Logging\FakeLogCollectorTests.cs (4)
46logger.LogDebug("Hello world!"); 88logger.LogDebug("Hello world!"); 127logger.LogDebug("Hello world!"); 159logger.LogDebug("Hello world!");
Logging\FakeLoggerProviderTests.cs (5)
18logger.LogDebug("M1"); 24logger.LogDebug("M2"); 30logger.LogDebug("M3"); 44l1.LogDebug("M1"); 45l2.LogDebug("M2");
Logging\FakeLoggerTests.cs (12)
170logger.LogDebug("This record should be marked as being disabled"); 176logger.LogDebug("This record should be marked as being enabled"); 191logger.LogDebug("BEFORE"); 193logger.LogDebug("AFTER"); 211logger.LogDebug("M1"); 233logger.LogDebug("M1"); 236logger.LogDebug("M1"); 239logger.LogDebug("M2"); 258logger.LogDebug("M1"); 259logger.LogDebug("M2"); 262logger.LogDebug("M3"); 263logger.LogDebug("M4");
OrderProcessor (1)
OrderProcessingWorker.cs (1)
61_logger.LogDebug("""
Sockets.FunctionalTests (2)
src\Servers\Kestrel\test\FunctionalTests\UnixDomainSocketsTests.cs (2)
59Logger.LogDebug("Application receive loop ending for connection {connectionId}.", connection.ConnectionId); 70Logger.LogDebug("Graceful shutdown triggered for {connectionId}.", connection.ConnectionId);
Stress.TelemetryService (2)
TelemetryStresser.cs (2)
76logger.LogDebug("Exporting metrics"); 78logger.LogDebug($"Export complete. Rejected count: {response.PartialSuccess?.RejectedDataPoints ?? 0}");
SystemdTestApp (1)
Startup.cs (1)
28logger.LogDebug($"Peer: {connectionFeature.RemoteIpAddress?.ToString()}:{connectionFeature.RemotePort}"