928 references to LogDebug
aspire (475)
Agents\ClaudeCode\ClaudeCodeAgentEnvironmentScanner.cs (16)
45_logger.LogDebug("Starting Claude Code environment scan in directory: {WorkingDirectory}", context.WorkingDirectory.FullName); 46_logger.LogDebug("Workspace root: {RepositoryRoot}", context.RepositoryRoot.FullName); 49_logger.LogDebug("Searching for .claude folder..."); 56_logger.LogDebug("Inferred workspace root from .claude folder parent: {WorkspaceRoot}", workspaceRoot.FullName); 59_logger.LogDebug("Checking if Aspire MCP server is already configured in .mcp.json..."); 63_logger.LogDebug("Adding Claude Code applicator for .mcp.json at: {WorkspaceRoot}", workspaceRoot.FullName); 68_logger.LogDebug("Aspire MCP server is already configured"); 74_logger.LogDebug("Registering Playwright MCP configuration callback for Claude Code"); 81_logger.LogDebug("Playwright MCP server is already configured"); 94_logger.LogDebug("No .claude folder found, checking for Claude Code CLI installation..."); 99_logger.LogDebug("Found Claude Code CLI version: {Version}", claudeCodeVersion); 104_logger.LogDebug("Adding Claude Code applicator for .mcp.json at workspace root: {WorkspaceRoot}", context.RepositoryRoot.FullName); 109_logger.LogDebug("Aspire MCP server is already configured"); 115_logger.LogDebug("Registering Playwright MCP configuration callback for Claude Code"); 122_logger.LogDebug("Playwright MCP server is already configured"); 134_logger.LogDebug("Claude Code CLI not found - skipping");
Agents\ClaudeCode\ClaudeCodeCliRunner.cs (6)
19logger.LogDebug("Checking for Claude Code CLI installation"); 24logger.LogDebug("Claude Code CLI is not installed or not found in PATH"); 50logger.LogDebug("Claude Code CLI returned non-zero exit code {ExitCode}: {Error}", process.ExitCode, errorOutput.Trim()); 59logger.LogDebug("Claude Code CLI returned empty version output"); 78logger.LogDebug("Found Claude Code CLI version: {Version}", version); 82logger.LogDebug("Could not parse Claude Code CLI version from output: {Output}", output.Trim());
Agents\CopilotCli\CopilotCliAgentEnvironmentScanner.cs (15)
45_logger.LogDebug("Starting GitHub Copilot CLI environment scan"); 54_logger.LogDebug("Detected VSCode terminal environment. Assuming GitHub Copilot CLI is available to avoid potential hangs from interactive installation prompts."); 57_logger.LogDebug("Checking if Aspire MCP server is already configured in Copilot CLI global config..."); 62_logger.LogDebug("Adding Copilot CLI applicator for global MCP configuration"); 67_logger.LogDebug("Aspire MCP server is already configured in Copilot CLI"); 73_logger.LogDebug("Registering Playwright MCP configuration callback for Copilot CLI"); 80_logger.LogDebug("Playwright MCP server is already configured in Copilot CLI"); 93_logger.LogDebug("Checking for GitHub Copilot CLI installation..."); 98_logger.LogDebug("GitHub Copilot CLI is not installed - skipping"); 103_logger.LogDebug("Found GitHub Copilot CLI version: {Version}", copilotVersion); 106_logger.LogDebug("Checking if Aspire MCP server is already configured in Copilot CLI global config..."); 110_logger.LogDebug("Adding Copilot CLI applicator for global MCP configuration"); 115_logger.LogDebug("Aspire MCP server is already configured in Copilot CLI"); 121_logger.LogDebug("Registering Playwright MCP configuration callback for Copilot CLI"); 128_logger.LogDebug("Playwright MCP server is already configured in Copilot CLI");
Agents\CopilotCli\CopilotCliRunner.cs (5)
19logger.LogDebug("Checking for GitHub Copilot CLI installation"); 24logger.LogDebug("GitHub Copilot CLI is not installed or not found in PATH"); 50logger.LogDebug("GitHub Copilot CLI returned non-zero exit code {ExitCode}: {Error}", process.ExitCode, errorOutput.Trim()); 58logger.LogDebug("Found GitHub Copilot CLI version: {Version}", version); 62logger.LogDebug("Could not parse GitHub Copilot CLI version from output: {Output}", output.Trim());
Agents\DeprecatedMcpCommandScanner.cs (3)
42_logger.LogDebug("Scanning for deprecated MCP command usage in agent configurations"); 78_logger.LogDebug("Found deprecated MCP command in {AgentName} config at {Path}", location.AgentName, configPath); 200_logger.LogDebug("Updating {AgentName} config at {Path}", location.AgentName, configPath);
Agents\OpenCode\OpenCodeAgentEnvironmentScanner.cs (12)
40_logger.LogDebug("Starting OpenCode environment scan in directory: {WorkingDirectory}", context.WorkingDirectory.FullName); 41_logger.LogDebug("Workspace root: {RepositoryRoot}", context.RepositoryRoot.FullName); 50_logger.LogDebug("Found existing opencode.jsonc at: {ConfigFilePath}", configFilePath); 53_logger.LogDebug("Checking if Aspire MCP server is already configured in opencode.jsonc..."); 57_logger.LogDebug("Adding OpenCode applicator to update existing opencode.jsonc"); 62_logger.LogDebug("Aspire MCP server is already configured"); 68_logger.LogDebug("Registering Playwright MCP configuration callback for OpenCode"); 75_logger.LogDebug("Playwright MCP server is already configured"); 88_logger.LogDebug("No opencode.jsonc found, checking for OpenCode CLI installation..."); 93_logger.LogDebug("Found OpenCode CLI version: {Version}", openCodeVersion); 95_logger.LogDebug("Adding OpenCode applicator to create new opencode.jsonc at: {ConfigDirectory}", configDirectory.FullName); 112_logger.LogDebug("OpenCode CLI not found - skipping");
Agents\OpenCode\OpenCodeCliRunner.cs (6)
19logger.LogDebug("Checking for OpenCode CLI installation"); 24logger.LogDebug("OpenCode CLI is not installed or not found in PATH"); 50logger.LogDebug("OpenCode CLI returned non-zero exit code {ExitCode}: {Error}", process.ExitCode, errorOutput.Trim()); 59logger.LogDebug("OpenCode CLI returned empty version output"); 71logger.LogDebug("Found OpenCode CLI version: {Version}", version); 75logger.LogDebug("Could not parse OpenCode CLI version from output: {Output}", output.Trim());
Agents\VsCode\VsCodeAgentEnvironmentScanner.cs (18)
45_logger.LogDebug("Starting VS Code environment scan in directory: {WorkingDirectory}", context.WorkingDirectory.FullName); 46_logger.LogDebug("Workspace root: {RepositoryRoot}", context.RepositoryRoot.FullName); 48_logger.LogDebug("Searching for .vscode folder..."); 53_logger.LogDebug("Found .vscode folder at: {VsCodeFolder}", vsCodeFolder.FullName); 59_logger.LogDebug("Adding VS Code applicator for .vscode folder at: {VsCodeFolder}", vsCodeFolder.FullName); 64_logger.LogDebug("Aspire MCP server is already configured in .vscode/mcp.json"); 70_logger.LogDebug("Registering Playwright MCP configuration callback for .vscode folder"); 77_logger.LogDebug("Playwright MCP server is already configured in .vscode/mcp.json"); 89_logger.LogDebug("No .vscode folder found, but VS Code is available on the system"); 93_logger.LogDebug("Adding VS Code applicator for new .vscode folder at: {VsCodeFolder}", targetVsCodeFolder.FullName); 110_logger.LogDebug("No .vscode folder found and VS Code is not available - skipping VS Code configuration"); 124_logger.LogDebug("Checking for VS Code environment variables..."); 127_logger.LogDebug("Found VS Code environment variables"); 132_logger.LogDebug("Checking for VS Code stable CLI..."); 136_logger.LogDebug("Found VS Code stable version: {Version}", vsCodeVersion); 141_logger.LogDebug("Checking for VS Code Insiders CLI..."); 145_logger.LogDebug("Found VS Code Insiders version: {Version}", vsCodeInsidersVersion); 149_logger.LogDebug("VS Code not found on the system");
Agents\VsCode\VsCodeCliRunner.cs (7)
20logger.LogDebug("Checking for VS Code CLI installation using command: {Command}", command); 25logger.LogDebug("VS Code CLI ({Command}) is not installed or not found in PATH", command); 51logger.LogDebug("VS Code CLI ({Command}) returned non-zero exit code {ExitCode}: {Error}", command, process.ExitCode, errorOutput.Trim()); 59logger.LogDebug("VS Code CLI ({Command}) returned empty version output", command); 68logger.LogDebug("VS Code CLI ({Command}) returned no lines in output", command); 82logger.LogDebug("Found VS Code CLI ({Command}) version: {Version}", command, version); 86logger.LogDebug("Could not parse VS Code CLI ({Command}) version from output: {Output}", command, output.Trim());
Backchannel\AppHostAuxiliaryBackchannel.cs (24)
144logger?.LogDebug("Connecting to auxiliary backchannel at {SocketPath}", socketPath); 156logger?.LogDebug("Connected to auxiliary backchannel at {SocketPath}", socketPath); 180logger?.LogDebug("AppHost capabilities: {Capabilities}", capabilities is not null ? string.Join(", ", capabilities) : "null"); 186logger?.LogDebug("AppHost does not support GetCapabilitiesAsync, assuming v1 only"); 206_logger?.LogDebug("Requesting AppHost information"); 221_logger?.LogDebug("Requesting AppHost to stop"); 230_logger?.LogDebug("Stop request sent to AppHost"); 250_logger?.LogDebug("Requesting Dashboard MCP connection info"); 265_logger?.LogDebug("Requesting Dashboard URLs"); 289_logger?.LogDebug("Getting resource snapshots"); 312_logger?.LogDebug("Starting resource snapshots watch"); 347_logger?.LogDebug("Getting resource logs for {ResourceName} (follow={Follow})", resourceName ?? "all resources", follow); 388_logger?.LogDebug("Requesting AppHost to call MCP tool {ToolName} on resource {ResourceName}", toolName, resourceName); 427_logger?.LogDebug("Getting AppHost info (v2)"); 472_logger?.LogDebug("Getting Dashboard info (v2)"); 509_logger?.LogDebug("Getting resources (v2)"); 545_logger?.LogDebug("Watching resources (v2)"); 599_logger?.LogDebug("Getting console logs (v2) for {ResourceName}", request.ResourceName); 666_logger?.LogDebug("Calling MCP tool (v2) {ToolName} on {ResourceName}", request.ToolName, request.ResourceName); 691_logger?.LogDebug("Stopping AppHost (v2)"); 718_logger?.LogDebug("Executing command '{CommandName}' on resource '{ResourceName}'", commandName, resourceName); 731_logger?.LogDebug("Command '{CommandName}' on resource '{ResourceName}' completed with success={Success}", commandName, resourceName, response.Success); 754_logger?.LogDebug("Waiting for resource '{ResourceName}' to reach status '{Status}' with timeout {Timeout}s", resourceName, status, timeoutSeconds); 768_logger?.LogDebug("Wait for resource '{ResourceName}' completed: success={Success}, state={State}", resourceName, response.Success, response.State);
Backchannel\AppHostCliBackchannel.cs (22)
59logger.LogDebug("Requesting stop"); 72logger.LogDebug("Requesting dashboard URL"); 91logger.LogDebug("Requesting AppHost log entries"); 98logger.LogDebug("Received AppHost log entries async enumerable"); 102logger.LogDebug("Connection lost while getting log entries, waiting for reconnect..."); 127logger.LogDebug("Requesting resource states"); 134logger.LogDebug("Received resource states async enumerable"); 138logger.LogDebug("Connection lost while getting resource states, waiting for reconnect..."); 173logger.LogDebug("Connection lost during enumeration, will restart after reconnect"); 189logger.LogDebug("Ignoring connection lost exception during enumerator disposal"); 238logger.LogDebug("Reconnection completed successfully"); 269logger.LogDebug("Connecting to AppHost backchannel at {SocketPath} (autoReconnect={AutoReconnect})", socketPath, autoReconnect); 273logger.LogDebug("Connected to AppHost backchannel at {SocketPath}", socketPath); 320logger.LogDebug("Backchannel disconnected but reconnection already in progress, ignoring."); 351logger.LogDebug("Resetting backchannel for reconnection"); 392logger.LogDebug("Requesting publishing activities."); 399logger.LogDebug("Received publishing activities."); 412logger.LogDebug("Requesting capabilities"); 427logger.LogDebug("Providing prompt responses for prompt ID {PromptId}", promptId); 440logger.LogDebug("Providing prompt responses for prompt ID {PromptId}", promptId); 453logger.LogDebug("Requesting execution."); 459logger.LogDebug("Requested execution.");
Backchannel\AppHostConnectionHelper.cs (3)
53logger.LogDebug("Using explicitly selected AppHost: {AppHostPath}", selectedPath); 67logger.LogDebug("Using single in-scope AppHost: {AppHostPath}", inScopeConnections[0].AppHostInfo?.AppHostPath ?? "N/A"); 91logger.LogDebug(
Backchannel\AuxiliaryBackchannelMonitor.cs (13)
147logger.LogDebug("Current command is not MCP start command. Auxiliary backchannel monitoring disabled."); 179logger.LogDebug("No command selected within timeout. Auxiliary backchannel monitoring not needed."); 222logger.LogDebug("Socket created: {SocketPath}", newFile); 230logger.LogDebug("Socket deleted: {SocketPath}", removedFile); 273logger.LogDebug("Marked failed socket for retry on next scan: {SocketPath}", failedSocket); 294logger.LogDebug("Already connected to socket: {SocketPath}", socketPath); 302logger.LogDebug("Socket is orphaned (PID {Pid} not running), skipping: {SocketPath}", pidValue, socketPath); 310logger.LogDebug("Deleted orphaned socket: {SocketPath}", socketPath); 345logger.LogDebug("Retrying connection to auxiliary socket: {SocketPath}", socketPath); 372logger.LogDebug("Socket connection refused but file is new ({Age}ms old), will retry: {SocketPath}", (int)socketAge.TotalMilliseconds, socketPath); 378logger.LogDebug("Socket connection refused (stale socket): {SocketPath}", socketPath); 383logger.LogDebug("Socket not ready yet, will retry: {SocketPath}", socketPath); 396logger.LogDebug("Socket connection timed out after {ElapsedSeconds} seconds: {SocketPath}", maxElapsed.TotalSeconds, socketPath);
Backchannel\ExtensionBackchannel.cs (28)
103_logger.LogDebug("Starting backchannel connection to Aspire extension at {Endpoint}", endpoint); 114_logger.LogDebug("Connected to ExtensionBackchannel at {Endpoint}", endpoint); 123_logger.LogDebug("Slow polling for backchannel connection (attempt {ConnectionAttempts}), {SocketException}", connectionAttempts, ex); 167_logger.LogDebug("Connecting to {Name} backchannel at {SocketPath}", Name, endpoint); 177_logger.LogDebug("Connected to {Name} backchannel at {SocketPath}", Name, endpoint); 257_logger.LogDebug("Sent message {Message}", message); 273_logger.LogDebug("Sent success message {Message}", message); 289_logger.LogDebug("Sent subtle message {Message}", message); 305_logger.LogDebug("Sent error message {Error}", error); 321_logger.LogDebug("Sent empty line"); 337_logger.LogDebug("Sent incompatible version error for capability {RequiredCapability} with hosting SDK version {AppHostHostingSdkVersion}", 354_logger.LogDebug("Sent cancellation message"); 370_logger.LogDebug("Sent lines for display"); 386_logger.LogDebug("Sent dashboard URLs for display"); 402_logger.LogDebug("Sent status update: {Status}", status); 423_logger.LogDebug("Prompting for selection with text: {PromptText}, choices: {Choices}", promptText, choicesByFormattedValue.Keys); 453_logger.LogDebug("Prompting for multiple selections with text: {PromptText}, choices: {Choices}", promptText, choicesByFormattedValue.Keys); 478_logger.LogDebug("Prompting for confirmation with text: {PromptText}, default value: {DefaultValue}", promptText, defaultValue); 504_logger.LogDebug("Prompting for string with text: {PromptText}, default value: {DefaultValue}, required: {Required}", promptText, defaultValue, required); 530_logger.LogDebug("Prompting for secret string with text: {PromptText}, required: {Required}", promptText, required); 554_logger.LogDebug("Opening path: {Path}", path); 589_logger.LogDebug("Sent plain text message {Message}", text); 605_logger.LogDebug("Sent debug session message {Message}", message); 627_logger.LogDebug("Requesting capabilities from the extension"); 645_logger.LogDebug("Running .NET project at {ProjectFile} with arguments: {Arguments}", projectFile, string.Join(" ", arguments)); 661_logger.LogDebug("Notifying that app host startup is completed"); 678_logger.LogDebug("Starting extension debugging session in directory {WorkingDirectory} for project file {ProjectFile} with debug={Debug}", 695_logger.LogDebug("Stopping extension debugging session");
Bundles\BundleService.cs (13)
53logger.LogDebug("No embedded bundle payload, skipping extraction."); 60logger.LogDebug("ProcessPath is null or empty, skipping bundle extraction."); 67logger.LogDebug("Could not determine extraction directory from {ProcessPath}, skipping.", processPath); 71logger.LogDebug("Ensuring bundle is extracted to {ExtractDir}.", extractDir); 93logger.LogDebug("No embedded bundle payload."); 99logger.LogDebug("Acquiring bundle extraction lock at {LockPath}...", lockPath); 101logger.LogDebug("Bundle extraction lock acquired."); 112logger.LogDebug("Bundle already extracted and up to date (version: {Version}).", existingVersion); 116logger.LogDebug("Version mismatch: existing={ExistingVersion}, current={CurrentVersion}. Re-extracting.", existingVersion, currentVersion); 133logger.LogDebug("Cleaning existing layout directories in {Path}.", destinationPath); 139logger.LogDebug("Payload extraction completed in {ElapsedMs}ms.", sw.ElapsedMilliseconds); 144logger.LogDebug("Version marker written (version: {Version}).", currentVersion); 153logger.LogDebug("Bundle extraction verified successfully.");
Caching\DiskCache.cs (7)
63_logger.LogDebug("Disk cache miss for key {RawKey}", key); 68_logger.LogDebug("Disk cache hit for key {RawKey} (file: {CacheFilePath})", key, cacheFilePath); 123_logger.LogDebug("Stored disk cache entry for key {RawKey} (file: {CacheFilePath})", key, fullPath); 273_logger.LogDebug("Deleted expired cache file: {CacheFile}", file.FullName); 277_logger.LogDebug("Deleted old cache file during global cleanup: {CacheFile}", file.FullName); 281_logger.LogDebug("Deleted invalid cache file: {CacheFile}", file.FullName); 285_logger.LogDebug("Deleted cache file: {CacheFile}", file.FullName);
Certificates\CertificateGeneration\CertificateManager.cs (63)
1104_logger.LogDebug("Listing certificates from {Location}\\{StoreName}", location, storeName); 1108_logger.LogDebug("Found certificates: {MatchingCertificates}", matchingCertificates); 1112_logger.LogDebug("Checking certificates validity"); 1116_logger.LogDebug("Valid certificates: {ValidCertificates}", validCertificates); 1120_logger.LogDebug("Invalid certificates: {InvalidCertificates}", invalidCertificates); 1124_logger.LogDebug("Finished listing certificates."); 1132_logger.LogDebug("Filtered certificates: {FilteredCertificates}", filteredCertificates); 1136_logger.LogDebug("Excluded certificates: {ExcludedCertificates}", excludedCertificates); 1140_logger.LogDebug("Valid certificates: {Certificates}", certificates); 1144_logger.LogDebug("Selected certificate: {Certificate}", certificate); 1148_logger.LogDebug("No valid certificates found."); 1152_logger.LogDebug("Generating HTTPS development certificate."); 1156_logger.LogDebug("Finished generating HTTPS development certificate."); 1164_logger.LogDebug("Saving certificate '{Certificate}' to store {Location}\\{StoreName}.", certificate, location, name); 1168_logger.LogDebug("Finished saving certificate to the store."); 1176_logger.LogDebug("Saving certificate '{Certificate}' to {Path} {PrivateKey} private key.", certificate, path, includePrivateKey ? "with" : "without"); 1180_logger.LogDebug("Exporting certificate with private key but no password."); 1184_logger.LogDebug("Creating directory {Path}.", path); 1192_logger.LogDebug("Writing the certificate to: {Path}.", path); 1200_logger.LogDebug("Trusting the certificate to: {Certificate}.", certificate); 1204_logger.LogDebug("Finished trusting the certificate."); 1212_logger.LogDebug("Running the trust command {Command}.", command); 1216_logger.LogDebug("Finished running the trust command."); 1224_logger.LogDebug("Running the remove trust command for {Certificate}.", certificate); 1228_logger.LogDebug("Finished running the remove trust command."); 1236_logger.LogDebug("The certificate is not trusted: {Certificate}.", certificate); 1240_logger.LogDebug("Removing the certificate from the keychain {KeyChain} {Certificate}.", keyChain, certificate); 1244_logger.LogDebug("Finished removing the certificate from the keychain."); 1252_logger.LogDebug("Removing the certificate from the user store {Certificate}.", certificate); 1256_logger.LogDebug("Finished removing the certificate from the user store."); 1264_logger.LogDebug("Adding certificate to the trusted root certification authority store."); 1268_logger.LogDebug("The certificate is already trusted."); 1272_logger.LogDebug("Trusting the certificate was cancelled by the user."); 1276_logger.LogDebug("Removing the certificate from the trusted root certification authority store."); 1280_logger.LogDebug("Finished removing the certificate from the trusted root certification authority store."); 1284_logger.LogDebug("The certificate was not trusted."); 1288_logger.LogDebug("Correcting the the certificate state for '{Certificate}'.", certificate); 1292_logger.LogDebug("Finished correcting the certificate state."); 1300_logger.LogDebug("Importing the certificate {Certificate} to the keychain '{Keychain}'.", certificate, keychain); 1304_logger.LogDebug("Finished importing the certificate to the keychain."); 1312_logger.LogDebug("Writing the certificate to: {Path}.", path); 1328_logger.LogDebug("Loading certificate from path '{CertificatePath}'.", certificatePath); 1332_logger.LogDebug("The certificate '{Description}' has been loaded successfully.", description); 1344_logger.LogDebug("The certificate is already trusted."); 1348_logger.LogDebug("Saving the certificate {Certificate} to the user profile folder '{Directory}'.", certificate, directory); 1352_logger.LogDebug("Finished saving the certificate to the user profile folder."); 1372_logger.LogDebug("Reading OpenSSL trusted certificates location from {NssDbOverrideVariableName}.", nssDbOverrideVariableName); 1376_logger.LogDebug("Reading NSS database locations from {EnvironmentVariable}.", environmentVariable); 1396_logger.LogDebug("Home directory '{HomeDirectory}' does not exist. Unable to discover NSS databases for user '{Username}'. This will likely affect browsers.", homeDirectory, username); 1400_logger.LogDebug("OpenSSL reported its directory in an unexpected format."); 1404_logger.LogDebug("Unable to determine the OpenSSL directory."); 1408_logger.LogDebug("Unable to determine the OpenSSL directory: {ExceptionMessage}.", exceptionMessage); 1432_logger.LogDebug("Trusted the certificate in .NET."); 1440_logger.LogDebug("Trusted the certificate in OpenSSL."); 1448_logger.LogDebug("Trusted the certificate in the NSS database in '{Path}'.", path); 1460_logger.LogDebug("Untrusted the certificate in OpenSSL."); 1468_logger.LogDebug("Removed the certificate from the NSS database in '{Path}'.", path); 1492_logger.LogDebug("No Firefox profiles found in directory '{FirefoxDirectory}'.", firefoxDirectory); 1512_logger.LogDebug("Untrusting the certificate in OpenSSL was skipped since '{CertPath}' does not exist.", certPath); 1536_logger.LogDebug("The certificate directory '{CertDir}' is already included in the {EnvVarName} environment variable.", certDir, envVarName); 1544_logger.LogDebug("Successfully trusted the certificate in the Windows certificate store via WSL."); 1556_logger.LogDebug("Meets minimum version certificates: {MeetsMinimumVersionCertificates}", meetsMinimumVersionCertificates); 1560_logger.LogDebug("Below minimum version certificates: {BelowMinimumVersionCertificates}", belowMinimumVersionCertificates);
Commands\AgentMcpCommand.cs (3)
134_logger.LogDebug("MCP ListTools request received"); 171_logger.LogDebug("Returning {ToolCount} tools", tools.Count); 180_logger.LogDebug("MCP CallTool request received for tool: {ToolName}", toolName);
Commands\AppHostLauncher.cs (6)
107logger.LogDebug("Starting AppHost in background: {AppHostPath}", effectiveAppHostFile.FullName); 122logger.LogDebug("Waiting for socket with prefix: {SocketPrefix}, Hash: {Hash}", expectedSocketPrefix, expectedHash); 148logger.LogDebug("Found {Count} running instance(s) for this AppHost, stopping them first.", existingSockets.Length); 199logger.LogDebug("Spawning child CLI: {Executable} (isDotnetHost={IsDotnetHost}) with args: {Args}", 201logger.LogDebug("Working directory: {WorkingDirectory}", executionContext.WorkingDirectory.FullName); 233logger.LogDebug("Child CLI process started with PID: {PID}", childProcess.Id);
Commands\DocsGetCommand.cs (1)
68_logger.LogDebug("Getting documentation for slug '{Slug}' (section: {Section})", slug, section ?? "(all)");
Commands\DocsListCommand.cs (1)
55_logger.LogDebug("Listing documentation pages");
Commands\DocsSearchCommand.cs (1)
69_logger.LogDebug("Searching documentation for '{Query}' (limit: {Limit})", query, limit);
Commands\ResourceCommandHelper.cs (2)
40logger.LogDebug("{Verb} resource '{ResourceName}'", progressVerb, resourceName); 60logger.LogDebug("Executing command '{CommandName}' on resource '{ResourceName}'", commandName, resourceName);
Commands\Sdk\SdkDumpCommand.cs (3)
137_logger.LogDebug("Building AppHost server for capability scanning"); 170_logger.LogDebug("Fetching capabilities via RPC"); 178_logger.LogDebug("{Message}{Location}", diag.Message, location);
Commands\Sdk\SdkGenerateCommand.cs (3)
143_logger.LogDebug("Building AppHost server for SDK generation"); 172_logger.LogDebug("Generating {Language} SDK via RPC", languageInfo.CodeGenerator); 194_logger.LogDebug("Wrote {FileName}", fileName);
Commands\StopCommand.cs (7)
187_logger.LogDebug("Found {Count} running AppHost(s) to stop", allConnections.Length); 194_logger.LogDebug("Queuing stop for AppHost: {AppHostPath}", appHostPath); 201_logger.LogDebug("Stop all completed. All stopped: {AllStopped}", allStopped); 218_logger.LogDebug("Stopping AppHost: {AppHostPath}", appHostPath); 230_logger.LogDebug("Sending stop signal to CLI process (PID {Pid})", cliPid); 245_logger.LogDebug("No CLI process ID available, trying RPC stop"); 259_logger.LogDebug("RPC stop not available, sending SIGINT to AppHost PID {Pid}", appHostPid);
Commands\TelemetrySpansCommand.cs (1)
139_logger.LogDebug("Fetching spans from {Url}", url);
Commands\TelemetryTracesCommand.cs (2)
110_logger.LogDebug("Fetching trace {TraceId} from {Url}", traceId, url); 186_logger.LogDebug("Fetching traces from {Url}", url);
Commands\UpdateCommand.cs (5)
307_logger.LogDebug("Cleared global channel setting for stable channel"); 312_logger.LogDebug("Saved global channel setting: {Channel}", channel); 369_logger.LogDebug("Creating backup: {BackupPath}", backupPath); 391_logger.LogDebug("Testing new CLI executable and displaying version"); 530_logger.LogDebug("Deleted old backup file: {BackupFile}", backupFile);
Commands\WaitCommand.cs (1)
118_logger.LogDebug("Waiting for resource '{ResourceName}' to reach status '{Status}' with timeout {Timeout}s", resourceName, status, timeoutSeconds);
Configuration\Features.cs (3)
17logger.LogDebug("Feature check: {Feature}, ConfigKey: {ConfigKey}, Value: '{Value}', DefaultValue: {DefaultValue}", 22logger.LogDebug("Feature {Feature} using default value: {DefaultValue}", feature, defaultValue); 27logger.LogDebug("Feature {Feature} parsed value: {Enabled}", feature, enabled);
DotNet\DotNetCliExecution.cs (10)
54_logger.LogDebug("Failed to start dotnet process with args: {Args}", string.Join(" ", Arguments)); 61_logger.LogDebug("Started dotnet with PID: {ProcessId}", _process.Id); 93_logger.LogDebug("Waiting for dotnet process to exit with PID: {ProcessId}", _process.Id); 102_logger.LogDebug("dotnet process with PID: {ProcessId} has not exited, killing it.", _process.Id); 110_logger.LogDebug("dotnet process with PID: {ProcessId} has exited with code: {ExitCode}", _process.Id, _process.ExitCode); 118_logger.LogDebug("Closing stdout/stderr streams for PID: {ProcessId}", _process.Id); 137_logger.LogDebug("Pending forwarders for PID completed: {ProcessId}", _process.Id); 148_logger.LogDebug( 162_logger.LogDebug( 175_logger.LogDebug("Stream forwarder completed for {Identifier} - stream was closed", identifier);
DotNet\DotNetCliExecutionFactory.cs (3)
34logger.LogDebug("Running {FullName} with args: {Args}", workingDirectory.FullName, string.Join(" ", args)); 40logger.LogDebug("Running {FullName} with env: {EnvKey}={EnvValue}", workingDirectory.FullName, envKvp.Key, envKvp.Value); 132logger.LogDebug("Using private SDK installation at {SdkPath}", sdkInstallPath);
DotNet\DotNetCliRunner.cs (4)
156logger.LogDebug("Starting backchannel connection to AppHost at {SocketPath}", socketPath); 172logger.LogDebug("Connected to AppHost backchannel at {SocketPath}", socketPath); 855logger.LogDebug("NuGet config file not found at path: {Path}", filePath); 995logger.LogDebug(
DotNet\DotNetSdkInstaller.cs (6)
46logger.LogDebug("Found private SDK installation at {Path}", sdkInstallPath); 212logger.LogDebug("dotnet-install stdout: {Line}", line); 221logger.LogDebug("dotnet-install stderr: {Line}", line); 247logger.LogDebug("Initializing NuGet configuration for private SDK installation"); 258logger.LogDebug("NuGet configuration initialized successfully"); 262logger.LogDebug("NuGet configuration initialization returned exit code {ExitCode}", exitCode);
Git\GitRepository.cs (5)
19logger.LogDebug("Searching for Git repository root from working directory: {WorkingDirectory}", executionContext.WorkingDirectory.FullName); 44logger.LogDebug("Git command returned non-zero exit code {ExitCode}: {Error}", process.ExitCode, errorOutput.Trim()); 53logger.LogDebug("Git command returned empty output"); 60logger.LogDebug("Found Git repository root: {GitRoot}", directoryInfo.FullName); 64logger.LogDebug("Git repository root path does not exist: {GitRoot}", rootPath);
Layout\LayoutDiscovery.cs (24)
51_logger.LogDebug("Found ASPIRE_LAYOUT_PATH: {Path}", envLayoutPath); 63_logger.LogDebug("Discovered layout relative to CLI: {Path}", relativeLayout.LayoutPath); 67_logger.LogDebug("No bundle layout discovered"); 98_logger.LogDebug("SDK mode forced via {EnvVar}", BundleDiscovery.UseGlobalDotNetEnvVar); 114_logger.LogDebug("TryLoadLayoutFromPath: {Path}", layoutPath); 118_logger.LogDebug("Layout path does not exist: {Path}", layoutPath); 122_logger.LogDebug("Layout path exists, checking directory structure..."); 128_logger.LogDebug("Layout directory contents: {Contents}", string.Join(", ", entries)); 132_logger.LogDebug("Could not list directory contents: {Error}", ex.Message); 145_logger.LogDebug("TryDiscoverRelativeLayout: ProcessPath is null or empty"); 152_logger.LogDebug("TryDiscoverRelativeLayout: Could not get directory from ProcessPath"); 156_logger.LogDebug("TryDiscoverRelativeLayout: CLI at {Path}, checking for layout...", cliDir); 172_logger.LogDebug("TryDiscoverRelativeLayout: Checking parent directory {Path}...", parentDir); 189_logger.LogDebug("TryInferLayout: Checking layout at {Path}", layoutPath); 190_logger.LogDebug(" {Dir}/: {Exists}", BundleDiscovery.ManagedDirectoryName, Directory.Exists(managedPath) ? "exists" : "MISSING"); 191_logger.LogDebug(" {Dir}/: {Exists}", BundleDiscovery.DcpDirectoryName, Directory.Exists(dcpPath) ? "exists" : "MISSING"); 195_logger.LogDebug("TryInferLayout: Layout rejected - missing required directories"); 202_logger.LogDebug(" managed/{ManagedExe}: {Exists}", managedExeName, File.Exists(managedExePath) ? "exists" : "MISSING"); 206_logger.LogDebug("TryInferLayout: Layout rejected - aspire-managed not found"); 210_logger.LogDebug("TryInferLayout: Layout is valid"); 227_logger.LogDebug("DCP path override from {EnvVar}", BundleDiscovery.DcpPathEnvVar); 231_logger.LogDebug("Managed path override from {EnvVar}", BundleDiscovery.ManagedPathEnvVar); 243_logger.LogDebug("Layout validation failed: aspire-managed not found at {Path}", managedPath); 251_logger.LogDebug("Layout validation failed: DCP not found");
Mcp\Docs\DocsCache.cs (15)
41_logger.LogDebug("DocsCache memory hit for key: {Key}", key); 51_logger.LogDebug("DocsCache disk hit for key: {Key}", key); 55_logger.LogDebug("DocsCache miss for key: {Key}", key); 71_logger.LogDebug("DocsCache set for key: {Key}", key); 83_logger.LogDebug("DocsCache ETag memory hit for url: {Url}", url); 93_logger.LogDebug("DocsCache ETag disk hit for url: {Url}", url); 97_logger.LogDebug("DocsCache ETag miss for url: {Url}", url); 111_logger.LogDebug("DocsCache cleared ETag for url: {Url}", url); 117_logger.LogDebug("DocsCache set ETag for url: {Url}, ETag: {ETag}", url, etag); 128_logger.LogDebug("DocsCache index memory hit"); 138_logger.LogDebug("DocsCache index disk hit, loaded {Count} documents", diskDocuments.Length); 142_logger.LogDebug("DocsCache index miss"); 156_logger.LogDebug("DocsCache set index with {Count} documents", documents.Length); 180_logger.LogDebug("DocsCache invalidated key: {Key}", key); 337_logger.LogDebug("Deleting stale index (ETag missing)");
Mcp\Docs\DocsFetcher.cs (6)
50_logger.LogDebug("Fetching aspire.dev docs from {Url}, cached ETag: {ETag}", SmallDocsUrl, cachedETag ?? "(none)"); 57_logger.LogDebug("Server returned 304 Not Modified, using cached content"); 67_logger.LogDebug("Cache content missing despite valid ETag, clearing ETag and retrying"); 83_logger.LogDebug("Stored new ETag after retry: {ETag}", retryETag); 103_logger.LogDebug("Stored new ETag: {ETag}", newETag); 122_logger.LogDebug("Returning cached content after fetch failure");
Mcp\Docs\DocsIndexService.cs (1)
150_logger.LogDebug("Loading aspire.dev documentation");
Mcp\Docs\DocsSearchService.cs (1)
137_logger.LogDebug("Search for '{Query}' returned {Count} results", query, searchResults.Count);
Mcp\McpResourceToolRefreshService.cs (4)
76_logger.LogDebug("Refreshing resource tool map."); 92_logger.LogDebug("Resources with MCP tools received: {Count}", resourcesWithTools.Count); 108_logger.LogDebug("{Tool}: {Description}", exposedName, tool.Description); 114_logger.LogDebug("Unable to refresh resource tool map because there's no selected connection.");
Mcp\Tools\ExecuteResourceCommandTool.cs (1)
71logger.LogDebug("Executing command '{CommandName}' on resource '{ResourceName}' via backchannel", commandName, resourceName);
Mcp\Tools\ListStructuredLogsTool.cs (1)
75logger.LogDebug("Fetching structured logs from {Url}", url);
Mcp\Tools\ListTracesTool.cs (1)
75logger.LogDebug("Fetching traces from {Url}", url);
Mcp\Tools\ListTraceStructuredLogsTool.cs (1)
75logger.LogDebug("Fetching structured logs from {Url}", url);
NuGet\BundleNuGetPackageCache.cs (6)
159_logger.LogDebug("Running NuGet search via aspire-managed: {Query}", query); 160_logger.LogDebug("aspire-managed path: {ManagedPath}", managedPath); 161_logger.LogDebug("NuGet search args: {Args}", string.Join(" ", args)); 162_logger.LogDebug("Working directory: {WorkingDir}", workingDirectory.FullName); 173_logger.LogDebug("NuGetHelper stderr: {Error}", error); 184_logger.LogDebug("NuGet search returned {Length} bytes", output?.Length ?? 0);
NuGet\BundleNuGetService.cs (9)
85_logger.LogDebug("Using cached restore at {Path}", libsDir); 129_logger.LogDebug("Restoring {Count} packages", packageList.Count); 130_logger.LogDebug("aspire-managed path: {ManagedPath}", managedPath); 131_logger.LogDebug("NuGet restore args: {Args}", string.Join(" ", restoreArgs)); 141_logger.LogDebug("NuGetHelper restore stderr: {Error}", error); 169_logger.LogDebug("Creating layout from {AssetsPath}", assetsPath); 170_logger.LogDebug("NuGet layout args: {Args}", string.Join(" ", layoutArgs)); 180_logger.LogDebug("NuGetHelper layout stderr: {Error}", error); 191_logger.LogDebug("Packages restored to {Path}", libsDir);
NuGet\NuGetPackagePrefetcher.cs (1)
27logger.LogDebug("SDK is not installed. Skipping package prefetching to avoid cache pollution.");
OpenCode\OpenCodeCliRunner.cs (5)
19logger.LogDebug("Checking for OpenCode CLI installation"); 43logger.LogDebug("OpenCode CLI returned non-zero exit code {ExitCode}: {Error}", process.ExitCode, errorOutput.Trim()); 52logger.LogDebug("OpenCode CLI returned empty version output"); 64logger.LogDebug("Found OpenCode CLI version: {Version}", version); 68logger.LogDebug("Could not parse OpenCode CLI version from output: {Output}", output.Trim());
Program.cs (2)
601logger.LogDebug("Parsing arguments: {Args}", string.Join(" ", args)); 605logger.LogDebug("Executing command: {CommandName}", commandName);
Projects\AppHostProjectFactory.cs (5)
48_logger.LogDebug("TryGetProject called for file: {AppHostFile}", appHostFile.FullName); 53_logger.LogDebug("No language found for file: {AppHostFile}", appHostFile.FullName); 57_logger.LogDebug("Language detected: {LanguageId} for file: {AppHostFile}", language.LanguageId.Value, appHostFile.FullName); 63_logger.LogDebug("Polyglot support enabled: {PolyglotEnabled}", polyglotEnabled); 72_logger.LogDebug("Polyglot apphost accepted: {Language} at {AppHostFile}", language.DisplayName, appHostFile.FullName);
Projects\DotNetBasedAppHostServerProject.cs (4)
407_logger.LogDebug("Generated AppHostServer project file:\n{ProjectXml}", doc.ToString()); 509_logger.LogDebug("Enabling debug logging for AppHostServer"); 522_logger.LogDebug("AppHostServer({ProcessId}) stdout: {Line}", process.Id, e.Data); 530_logger.LogDebug("AppHostServer({ProcessId}) stderr: {Line}", process.Id, e.Data);
Projects\FallbackProjectParser.cs (1)
41_logger.LogDebug("Parsing project file '{ProjectFile}' using fallback parser", projectFile.FullName);
Projects\GuestAppHostProject.cs (13)
97_logger.LogDebug("Using SDK version from configuration: {Version}", configuredVersion); 101_logger.LogDebug("Using default SDK version: {Version}", DotNetBasedAppHostServerProject.DefaultSdkVersion); 248_logger.LogDebug("AppHost file {File} does not exist", appHostFile.FullName); 256_logger.LogDebug("AppHost file {File} does not match {Language} detection patterns: {Patterns}", 263_logger.LogDebug("Validated {Language} AppHost: {File}", _resolvedLanguage.DisplayName, appHostFile.FullName); 273_logger.LogDebug("Running {Language} AppHost: {AppHostFile}", DisplayName, appHostFile.FullName); 497_logger.LogDebug("No apphost.run.json or launchSettings.json found in {Path}", directory.FullName); 558_logger.LogDebug("Read {Count} environment variables from apphost.run.json", result.Count); 574_logger.LogDebug("Publishing guest AppHost: {AppHostFile}", appHostFile.FullName); 761_logger.LogDebug("Starting backchannel connection to AppHost server at {SocketPath}", socketPath); 771_logger.LogDebug("Connected to AppHost server backchannel at {SocketPath}", socketPath); 998_logger.LogDebug("Generating {CodeGenerator} code via RPC for {Count} packages", codeGenerator, packagesList.Count); 1068_logger.LogDebug("Created GuestRuntime for {Language}: Execute={Command} {Args}",
Projects\GuestRuntime.cs (5)
51_logger.LogDebug("No dependency installation configured for {Language}", _spec.Language); 64_logger.LogDebug("Installing dependencies: {Command} {Args}", command, string.Join(" ", args)); 163_logger.LogDebug("Executing: {Command} {Args}", command, string.Join(" ", args)); 205_logger.LogDebug("{Language}({ProcessId}) stdout: {Line}", _spec.Language, process.Id, e.Data); 214_logger.LogDebug("{Language}({ProcessId}) stderr: {Line}", _spec.Language, process.Id, e.Data);
Projects\PrebuiltAppHostServer.cs (6)
107_logger.LogDebug("Restoring {Count} integration packages", packageList.Count); 159_logger.LogDebug("Resolved channel: {Channel}", channelName); 201_logger.LogDebug("Using channel '{Channel}' NuGet source: {Source}", channel.Name, mapping.Source); 254_logger.LogDebug("Setting ASPIRE_INTEGRATION_LIBS_PATH to {Path}", _integrationLibsPath); 300_logger.LogDebug("PrebuiltAppHostServer({ProcessId}) stdout: {Line}", process.Id, e.Data); 308_logger.LogDebug("PrebuiltAppHostServer({ProcessId}) stderr: {Line}", process.Id, e.Data);
Projects\ProjectLocator.cs (15)
48logger.LogDebug("Searching for project files in {SearchDirectory}", searchDirectory.FullName); 67logger.LogDebug("Searching for patterns: {Patterns}", string.Join(", ", allPatterns)); 73logger.LogDebug("Found {CandidateCount} files matching pattern '{Pattern}'", candidateFiles.Length, pattern); 77logger.LogDebug("Checking candidate file {CandidateFile}", candidateFile.FullName); 92logger.LogDebug("Found {Language} apphost {CandidateFile}", handler.DisplayName, candidateFile.FullName); 169logger.LogDebug("Finding project file in {CurrentDirectory}", executionContext.WorkingDirectory); 176logger.LogDebug("Provided path {Path} is a directory, searching for project files recursively", projectFile.FullName); 192logger.LogDebug("Found single AppHost project file {ProjectFile} in directory {Directory}", appHostProjects[0].FullName, directory.FullName); 199logger.LogDebug("Multiple AppHost project files found in directory {Directory}, prompting user to select", directory.FullName); 209logger.LogDebug("Multiple AppHost project files found in directory {Directory}, selecting none", directory.FullName); 233logger.LogDebug("Using {Language} apphost {ProjectFile}", handler.DisplayName, projectFile.FullName); 256logger.LogDebug("No project file specified, searching for apphost projects in {CurrentDirectory}", executionContext.WorkingDirectory); 260logger.LogDebug("Found {ProjectFileCount} project files.", results.BuildableAppHost.Count); 306logger.LogDebug("Creating settings file at {SettingsFilePath}", settingsFile.FullName); 324logger.LogDebug("Set SDK version {Version} in settings file (inherited from parent config)", inheritedSdkVersion);
Projects\ProjectUpdater.cs (2)
30logger.LogDebug("Fetching '{AppHostPath}' items and properties.", projectFile.FullName); 252logger.LogDebug("Analyzing App Host SDK for: {AppHostFile}", context.AppHostProjectFile.FullName);
Projects\SolutionLocator.cs (3)
20logger.LogDebug("Searching for solution files starting from {StartDirectory}", startDirectory.FullName); 26logger.LogDebug("No solution files found in {Directory} or subdirectories", startDirectory.FullName); 30logger.LogDebug("Found {Count} solution file(s) in {Directory}", solutionFiles.Count, startDirectory.FullName);
Scaffolding\ScaffoldingService.cs (3)
114_logger.LogDebug("Wrote {Count} scaffold files", scaffoldFiles.Count); 201_logger.LogDebug("Generated {Count} code files in {Path}", generatedFiles.Count, outputPath); 239_logger.LogDebug("Resolved SDK version {Version} from channel {Channel}", latestPackage.Version, channelName);
src\Shared\PackageUpdateHelpers.cs (5)
78logger.LogDebug( 91logger.LogDebug("Current version {CurrentVersion} is prerelease and older than newest stable version {NewestStableVersion}.", currentVersion, newestStable); 98logger.LogDebug("Current version {CurrentVersion} is prerelease and older than newest prerelease version {NewestPrereleaseVersion}.", currentVersion, newestPrerelease); 107logger.LogDebug("Current version {CurrentVersion} is stable and older than newest stable version {NewestStableVersion}.", currentVersion, newestStable); 112logger.LogDebug("No newer version for the current version {CurrentVersion}.", currentVersion);
Utils\CliDownloader.cs (2)
68logger.LogDebug("Downloading archive from {Url} to {Path}", archiveUrl, archivePath); 72logger.LogDebug("Downloading checksum from {Url} to {Path}", checksumUrl, checksumPath);
Utils\CliUpdateNotifier.cs (1)
45logger.LogDebug("Unable to determine current CLI version for update check.");
Utils\EnvironmentChecker\DeprecatedWorkloadCheck.cs (3)
39logger.LogDebug("Failed to start dotnet workload list process"); 56logger.LogDebug("dotnet workload list timed out"); 62logger.LogDebug("dotnet workload list exited with code {ExitCode}", process.ExitCode);
Utils\EnvironmentChecker\DevCertsCheck.cs (1)
335logger.LogDebug("Failed to start security verify-cert process");
Aspire.Cli.Tests (3)
Interaction\SpectreConsoleLoggerProviderTests.cs (3)
52logger.LogDebug("Test debug message"); 75logger.LogDebug("Getting integrations from NuGet"); 95logger.LogDebug("Test debug message");
Aspire.Dashboard (66)
Components\Controls\Chart\ChartContainer.razor.cs (1)
204Logger.LogDebug(
Components\Controls\LogViewer.razor.cs (3)
79Logger.LogDebug("Log entries changed."); 108Logger.LogDebug("Initializing log viewer."); 138Logger.LogDebug("Disposing log viewer.");
Components\Interactions\InteractionsProvider.cs (1)
97Logger.LogDebug("InteractionProvider is disabled because the DashboardClient is not enabled.");
Components\Pages\ConsoleLogs.razor.cs (27)
57s._logger.LogDebug("Canceling subscription {SubscriptionId} to {ResourceName}.", s.SubscriptionId, s.Resource.Name); 65_logger.LogDebug("Canceling subscription for resource {ResourceName}.", Resource.Name); 223Logger.LogDebug("Loading task completed."); 227Logger.LogDebug("Load task canceled."); 244Logger.LogDebug("Received initial resource snapshot with {ResourceCount} resources.", snapshot.Length); 264Logger.LogDebug("All resources selected."); 303Logger.LogDebug("Selected console resource from name {ResourceName}.", ResourceName); 353Logger.LogDebug("Setting status to '{StatusName}'.", statusName); 359Logger.LogDebug("Initializing console logs view model."); 376Logger.LogDebug("Switching to or from 'All' mode"); 381Logger.LogDebug("Switching to different single resource: {ResourceName}", selectedResourceName); 395Logger.LogDebug("Subscription change needed. IsAllSelected: {IsAllSelected}, SelectedResource: {SelectedResource}", isAllSelected, selectedResourceName); 402Logger.LogDebug("Creating new log entries collection."); 424Logger.LogDebug("Unexpected state. Unknown resource '{ResourceName}' selected.", selectedResourceName); 599Logger.LogDebug("Subscribing to {ResourceCount} resources for 'All' view.", availableResources.Count); 603Logger.LogDebug("No resources available to subscribe to for 'All' view - will show empty logs."); 618Logger.LogDebug("Successfully created {SubscriptionCount} subscriptions for 'All' view.", _consoleLogsSubscriptions.Count); 627Logger.LogDebug("Already subscribed to resource {ResourceName}.", resourceName); 632Logger.LogDebug("Creating new subscription {SubscriptionId} for resource {ResourceName}.", subscription.SubscriptionId, resourceName); 638Logger.LogDebug("Started log subscription task for resource {ResourceName}.", resourceName); 745Logger.LogDebug("Starting log subscription {SubscriptionId}.", subscription.SubscriptionId); 750Logger.LogDebug("Subscribing to console logs with subscription {SubscriptionId} to resource {ResourceName}.", subscription.SubscriptionId, subscription.Resource.Name); 773Logger.LogDebug("Adding {PauseIntervalsCount} pause intervals on initial logs load.", pauseIntervals.Length); 831Logger.LogDebug("Subscription {SubscriptionId} finished watching logs for resource {ResourceName}. Cancel duration: {Duration}", subscription.SubscriptionId, subscription.Resource.Name, subscription.GetCancelElapsedTime()); 923Logger.LogDebug("Console logs paused new value: {IsPausedNewValue}", isPaused); 936Logger.LogDebug("Inserting new pause log entry for {Resource} starting at {StartTimestamp}.", subscription.Resource.Name, timestamp); 950Logger.LogDebug("Updating pause log entry for {Resource} starting at {StartTimestamp} with end of {EndTimestamp}.", subscription.Resource.Name, pause.StartTime, timestamp);
Components\Pages\Resources.razor.cs (3)
607Logger.LogDebug("Can't navigate to {ResourceName} from URL. Resource not found.", ResourceName); 669Logger.LogDebug("Showing details for resource {ResourceName}.", resource.Name); 718Logger.LogDebug("Clearing selected resource.");
Configuration\PostConfigureDashboardOptions.cs (2)
27_logger.LogDebug($"PostConfigure {nameof(DashboardOptions)} with name '{name}'."); 94_logger.LogDebug("Defaulting Mcp.PrimaryApiKey from Api.PrimaryApiKey.");
Configuration\ValidateDashboardOptions.cs (1)
25_logger.LogDebug($"Validating {nameof(DashboardOptions)}.");
Mcp\AspireResourceMcpTools.cs (3)
37_logger.LogDebug("MCP tool list_resources called"); 80_logger.LogDebug("MCP tool list_console_logs called with resource '{ResourceName}'.", resourceName); 145_logger.LogDebug("MCP tool execute_resource_command called with resource '{ResourceName}' and command '{CommandName}'.", resourceName, commandName);
Mcp\AspireTelemetryMcpTools.cs (3)
48_logger.LogDebug("MCP tool list_structured_logs called with resource '{ResourceName}'.", resourceName); 100_logger.LogDebug("MCP tool list_traces called with resource '{ResourceName}'.", resourceName); 149_logger.LogDebug("MCP tool list_trace_structured_logs called with trace '{TraceId}'.", traceId);
Model\BrowserTimeProvider.cs (1)
36_logger.LogDebug("Browser time zone set to '{TimeZone}' with UTC offset {UtcOffset}.", timeZoneInfo.Id, timeZoneInfo.BaseUtcOffset);
Model\Otlp\ResourcesSelectHelpers.cs (1)
52logger.LogDebug(
Model\TelemetryImportService.cs (8)
85_logger.LogDebug("Ignoring text file {FileName} - console log import not supported", fileName); 88_logger.LogDebug("Unsupported file type: {Extension}", extension); 138_logger.LogDebug("Imported logs from {FileName}", fileName); 145_logger.LogDebug("Imported traces from {FileName}", fileName); 152_logger.LogDebug("Imported metrics from {FileName}", fileName); 170_logger.LogDebug("Imported logs: {SuccessCount} succeeded, {FailureCount} failed", addContext.SuccessCount, addContext.FailureCount); 181_logger.LogDebug("Imported traces: {SuccessCount} succeeded, {FailureCount} failed", addContext.SuccessCount, addContext.FailureCount); 192_logger.LogDebug("Imported metrics: {SuccessCount} succeeded, {FailureCount} failed", addContext.SuccessCount, addContext.FailureCount);
Model\ValidateTokenMiddleware.cs (1)
33_logger.LogDebug($"Request to validate token URL but auth mode isn't set to {FrontendAuthMode.BrowserToken}.");
Otlp\Http\OtlpHttpEndpointsBuilder.cs (1)
107logger.LogDebug("OTLP HTTP request with unsupported content type '{ContentType}' was rejected. Only '{SupportedContentType}' is supported.", httpContext.Request.ContentType, ProtobufContentType);
Otlp\Model\OtlpHelpers.cs (2)
220context.Logger.LogDebug("Duplicate attribute {Name} with different value. Last value wins.", attribute.Key); 297context.Logger.LogDebug("Duplicate attribute {Name} with different value. Last value wins.", attribute.Key);
Otlp\OtlpLogsService.cs (1)
28_logger.LogDebug("Processed logs export. Success count: {SuccessCount}, failure count: {FailureCount}", addContext.SuccessCount, addContext.FailureCount);
Otlp\OtlpMetricsService.cs (1)
28_logger.LogDebug("Processed metrics export. Success count: {SuccessCount}, failure count: {FailureCount}", addContext.SuccessCount, addContext.FailureCount);
Otlp\OtlpTraceService.cs (1)
28_logger.LogDebug("Processed trace export. Success count: {SuccessCount}, failure count: {FailureCount}", addContext.SuccessCount, addContext.FailureCount);
ServiceClient\DashboardClient.cs (2)
96_logger.LogDebug("{ConfigKey} is not specified. Dashboard client services are unavailable.", DashboardConfigNames.ResourceServiceUrlName.ConfigKey); 103_logger.LogDebug("Dashboard configured to connect to: {Address}", address);
ShortcutManager.cs (1)
28_logger.LogDebug($"Received shortcut of type {shortcut}");
Telemetry\DashboardTelemetryService.cs (2)
69_logger.LogDebug("Initializing telemetry service."); 71_logger.LogDebug("Initialized telemetry service. Telemetry sender state: {TelemetrySenderState}", _telemetrySender.State);
Aspire.Hosting (143)
ApplicationModel\Docker\ContainerFilesExtensions.cs (1)
109logger?.LogDebug("Adding COPY --from={SourceImage} {SourcePath} {DestinationPath}",
ApplicationModel\ProjectResource.cs (11)
149logger.LogDebug("Tagging image {OriginalImageName} as {TempImageName}", originalImageName, tempImageName); 182logger.LogDebug("Generated temporary Dockerfile at {DockerfilePath}", tempDockerfilePath); 206logger.LogDebug("Successfully built final image {ImageName} with container files", originalImageName); 219logger.LogDebug("Deleted temporary Dockerfile {DockerfilePath}", tempDockerfilePath); 230logger.LogDebug("Failed build - temporary Dockerfile left at {DockerfilePath} for debugging", tempDockerfilePath); 234logger.LogDebug("Removing temporary image {TempImageName}", tempImageName); 254OnErrorData = error => logger.LogDebug("dotnet msbuild (stderr): {Error}", error), 258logger.LogDebug("Getting ContainerWorkingDirectory for project {ProjectPath}", projectPath); 267logger.LogDebug("Failed to get ContainerWorkingDirectory from dotnet msbuild for project {ProjectPath}. Exit code: {ExitCode}. Using default /app", 277logger.LogDebug("dotnet msbuild returned empty ContainerWorkingDirectory for project {ProjectPath}. Using default /app", projectPath); 281logger.LogDebug("Resolved ContainerWorkingDirectory for project {ProjectPath}: {WorkingDir}", projectPath, workingDir);
ApplicationModel\RequiredCommandValidator.cs (2)
78_logger.LogDebug("Required command '{Command}' for resource '{ResourceName}' already validated, resolved to '{ResolvedPath}'.", command, resource.Name, state.ResolvedPath); 147_logger.LogDebug("Required command '{Command}' for resource '{ResourceName}' resolved to '{ResolvedPath}'.", command, resource.Name, resolved);
ApplicationModel\ResourceCommandService.cs (2)
146logger.LogDebug("Command '{CommandName}' was canceled.", commandName); 157logger.LogDebug("Command '{CommandName}' was canceled.", commandName);
ApplicationModel\ResourceNotificationService.cs (9)
125_logger.LogDebug("Waiting for resource '{ResourceName}' to enter one of the target state: {TargetStates}", resourceName, string.Join(", ", targetStates)); 135_logger.LogDebug("Finished waiting for resource '{ResourceName}'. Resource state is '{State}'.", resourceName, finalState); 224_logger.LogDebug("Waiting for resource '{ResourceName}' to enter the '{State}' state.", resourceName, HealthStatus.Healthy); 238_logger.LogDebug("Waiting for resource ready to execute for '{ResourceName}'.", resourceName); 248_logger.LogDebug("Finished waiting for resource '{ResourceName}'.", resourceName); 459_logger.LogDebug("Waiting for resource '{ResourceName}' to match predicate.", resourceName); 465_logger.LogDebug("Finished waiting for resource '{ResourceName}'.", resourceName); 658_logger.LogDebug("Resource {ResourceName}/{ResourceId} changed state: {PreviousState} -> {NewState}", resource.Name, resourceId, previousStateText, newStateText); 663_logger.LogDebug("Resource {ResourceName}/{ResourceId} changed state: {NewState}", resource.Name, resourceId, newStateText);
Ats\LoggingExports.cs (1)
47logger.LogDebug("{Message}", message);
Backchannel\AppHostRpcTarget.cs (1)
76logger.LogDebug("Publishing activities stream cancelled due to AppHost shutdown");
Backchannel\AuxiliaryBackchannelRpcTarget.cs (3)
383logger.LogDebug("Dashboard resource not found in application model."); 797logger.LogDebug("Invoking tool {Name} with arguments {Arguments}", toolName, JsonSerializer.Serialize(arguments)); 804logger.LogDebug("Result: {Result}", JsonSerializer.Serialize(result));
Backchannel\AuxiliaryBackchannelService.cs (10)
47logger.LogDebug("Starting auxiliary backchannel service on socket path: {SocketPath}", SocketPath); 53logger.LogDebug("Creating backchannels directory: {Directory}", directory); 65logger.LogDebug("Cleaned up {Count} orphaned socket(s) from previous instances.", orphansDeleted); 72logger.LogDebug("Deleting existing socket file: {SocketPath}", SocketPath); 77logger.LogDebug("Creating and binding server socket..."); 83logger.LogDebug("Auxiliary backchannel listening on {SocketPath}", SocketPath); 109logger.LogDebug("Auxiliary backchannel service was cancelled: {Message}", ex.Message); 137logger.LogDebug("Client connected to auxiliary backchannel."); 171logger.LogDebug("Client disconnected from auxiliary backchannel"); 175logger.LogDebug("Client connection handler was cancelled");
Backchannel\BackchannelService.cs (5)
40logger.LogDebug("Backchannel socket path was not specified."); 49logger.LogDebug("Deleting existing socket file: {SocketPath}", unixSocketPath); 53logger.LogDebug("Listening for backchannel connection on socket path: {SocketPath}", unixSocketPath); 87logger.LogDebug("Backchannel service was cancelled: {Message}", ex.Message); 119logger.LogDebug("Deleted backchannel socket file: {SocketPath}", _socketPath);
Cli\CliOrphanDetector.cs (7)
54logger.LogDebug("No CLI process ID configured. Orphan detection disabled."); 58logger.LogDebug("Starting orphan detection for CLI process {Pid}.", pid); 66logger.LogDebug("Using start time verification. Expected start time: {StartTime}.", expectedStartTimeUnix); 70logger.LogDebug("No valid start time configured. Using PID-only detection."); 75logger.LogDebug("Starting detection loop."); 95logger.LogDebug("CLI process {Pid} is no longer running. Stopping application.", pid); 104logger.LogDebug("Orphan detection cancelled.");
Dashboard\DashboardEventHandlers.cs (2)
813defaultDashboardLogger.LogDebug("Failed to parse dashboard log line as JSON: {LogLine}", logLine.Content); 840defaultDashboardLogger.LogDebug("Stopped reading dashboard logs.");
Dashboard\DashboardServiceData.cs (1)
76logger.LogDebug("Updating resource snapshot for {Name}/{DisplayName}: {State}", snapshot.Name, snapshot.DisplayName, snapshot.State);
Dashboard\DashboardServiceHost.cs (1)
66_logger.LogDebug("Dashboard is not enabled so skipping hosting the resource service.");
Dcp\DcpDependencyCheck.cs (2)
250logger.LogDebug("The error from the container runtime check was: {Error}", error); 269logger.LogDebug("The error from the container runtime check was: {Error}", error);
Dcp\DcpExecutor.cs (20)
278_logger.LogDebug("Cancellation received during application startup."); 452_logger.LogDebug("Watching over DCP {ResourceType} resources.", typeof(T).Name); 473_logger.LogDebug("Cancellation received while watching {ResourceType} resources.", typeof(T).Name); 481_logger.LogDebug("Stopped watching {ResourceType} resources.", typeof(T).Name); 719_logger.LogDebug("Starting log streaming for {ResourceName}.", resource.Metadata.Name); 736_logger.LogDebug("Log streaming for {ResourceName} was cancelled.", resource.Metadata.Name); 1177_logger.LogDebug("Preparing services. Ports randomized: {RandomizePorts}", _options.Value.RandomizePorts); 1206_logger.LogDebug("Randomizing port for {ServiceName}. Original port: {OriginalPort}", serviceName, endpoint.Port); 2473_logger.LogDebug("Stopping resource '{ResourceName}'...", resourceReference.DcpResourceName); 2491_logger.LogDebug("Container '{ResourceName}' was stopped.", resourceReference.DcpResourceName); 2496_logger.LogDebug("Container '{ResourceName}' is still running; trying again to stop it...", resourceReference.DcpResourceName); 2506_logger.LogDebug("Executable '{ResourceName}' was stopped.", resourceReference.DcpResourceName); 2511_logger.LogDebug("Executable '{ResourceName}' is still running; trying again to stop it...", resourceReference.DcpResourceName); 2554_logger.LogDebug("Starting {ResourceType} '{ResourceName}'.", resourceType, appResource.DcpResourceName); 2600_logger.LogDebug("Ensuring '{ResourceName}' is deleted.", resourceName); 2614_logger.LogDebug("Delete request for '{ResourceName}' successfully completed. Resource to delete has UID '{Uid}'.", resourceName, uid); 2618_logger.LogDebug("Delete request for '{ResourceName}' returned NotFound.", resourceName); 2631_logger.LogDebug("Polling DCP to check if '{ResourceName}' is deleted...", resourceName); 2633_logger.LogDebug("Get request for '{ResourceName}' returned resource with UID '{Uid}'.", resourceName, uid); 2639_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)
544logger.LogDebug( 598logger.LogDebug(
DeveloperCertificateService.cs (2)
74logger.LogDebug("Container trust for developer certificates is {Status}.", containerTrustAvailable ? "available" : "not available"); 81logger.LogDebug("Developer certificate HTTPS/TLS termination support: {Available}", supportsTlsTermination);
Exec\ExecResourceManager.cs (4)
174_logger.LogDebug("Resource '{ResourceName}' has been successfully built and added to the model resources.", execResource.Name); 223_logger.LogDebug("Exec resource '{ResourceName}' will wait until project '{Project}' starts up.", execResourceName, project.Name); 227_logger.LogDebug("Exec resource '{ResourceName}' will run command '{Command}' with {ArgsCount} args '{Args}'.", execResourceName, exe, args?.Length ?? 0, string.Join(' ', args ?? [])); 258_logger.LogDebug("Exec container resource '{ResourceName}' will run command '{Command}' with {ArgsCount} args '{Args}'.", execResourceName, exe, args?.Length ?? 0, string.Join(' ', args ?? []));
Health\ResourceHealthCheckService.cs (9)
115logger.LogDebug("Resource '{ResourceName}' has no health checks to monitor.", resource.Name); 122logger.LogDebug("Resource '{ResourceName}' health checks to monitor: {HeathCheckKeys}", resource.Name, string.Join(", ", registrationKeysToCheck)); 245logger.LogDebug("Resource '{ResourceName}' is ready.", resource.Name); 252logger.LogDebug("Publishing ResourceReadyEvent for '{ResourceName}'.", resource.Name); 257logger.LogDebug("Waiting for ResourceReadyEvent for '{ResourceName}'.", resource.Name); 262logger.LogDebug("ResourceReadyEvent for '{ResourceName}' completed.", resource.Name); 264logger.LogDebug("Publishing the result of ResourceReadyEvent for '{ResourceName}'.", resource.Name); 324_logger.LogDebug("Starting health monitoring for resource '{ResourceName}'.", _resourceName); 334_logger.LogDebug("Stopping health monitoring for resource '{ResourceName}'.", _resourceName);
InteractionService.cs (1)
322_logger.LogDebug("No interaction found with ID {InteractionId}.", interactionId);
Orchestrator\ParameterProcessor.cs (1)
82logger.LogDebug("All unresolved parameters have been handled successfully.");
Pipelines\Internal\FileDeploymentStateManager.cs (1)
133logger.LogDebug("Deployment state saved to {Path}", deploymentStatePath);
Publishing\ContainerRuntimeBase.cs (9)
102_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 106_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error); 112_logger.LogDebug("Running {RuntimeName} with arguments: {Arguments}", RuntimeExecutable, arguments); 113_logger.LogDebug("Password length being passed to stdin: {PasswordLength}", password?.Length ?? 0); 151_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 200_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 216_logger.LogDebug(successLogTemplate, logArguments); 287_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 291_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error);
Publishing\DockerContainerRuntime.cs (3)
101Logger.LogDebug("docker buildx (stdout): {Output}", output); 105Logger.LogDebug("docker buildx (stderr): {Error}", error); 120Logger.LogDebug("Running Docker CLI with arguments: {ArgumentList}", spec.Arguments);
Publishing\PipelineExecutor.cs (1)
40logger.LogDebug("Waiting for backchannel connection before publishing.");
Publishing\ResourceContainerImageManager.cs (10)
213logger.LogDebug("Checking {ContainerRuntimeName} health", ContainerRuntime.Name); 223logger.LogDebug("{ContainerRuntimeName} is healthy", ContainerRuntime.Name); 232logger.LogDebug("Building container images completed"); 244logger.LogDebug("Checking {ContainerRuntimeName} health", ContainerRuntime.Name); 254logger.LogDebug("{ContainerRuntimeName} is healthy", ContainerRuntime.Name); 286logger.LogDebug("Resource {ResourceName} already has a container image associated and no build annotation. Skipping build.", resource.Name); 383logger.LogDebug("dotnet publish {ProjectPath} (stdout): {Output}", projectMetadata.ProjectPath, output); 387logger.LogDebug("dotnet publish {ProjectPath} (stderr): {Error}", projectMetadata.ProjectPath, error); 391logger.LogDebug( 411logger.LogDebug(
src\Shared\PackageUpdateHelpers.cs (5)
78logger.LogDebug( 91logger.LogDebug("Current version {CurrentVersion} is prerelease and older than newest stable version {NewestStableVersion}.", currentVersion, newestStable); 98logger.LogDebug("Current version {CurrentVersion} is prerelease and older than newest prerelease version {NewestPrereleaseVersion}.", currentVersion, newestPrerelease); 107logger.LogDebug("Current version {CurrentVersion} is stable and older than newest stable version {NewestStableVersion}.", currentVersion, newestStable); 112logger.LogDebug("No newer version for the current version {CurrentVersion}.", currentVersion);
Utils\FileSystemService.cs (5)
112_logger?.LogDebug("Cleaning up {Count} remaining temporary files/directories", _allocatedItems.Count); 183_parent.Logger?.LogDebug("Allocated temporary directory: {Path}", path); 211_parent.Logger?.LogDebug("Cleaned up temporary directory: {Path}", _path); 237_parent.Logger?.LogDebug("Allocated temporary file: {Path}", path); 265_parent.Logger?.LogDebug("Cleaned up temporary file: {Path}", _path);
VersionChecking\PackageFetcher.cs (5)
37_logger.LogDebug("dotnet (stdout): {Output}", output); 41_logger.LogDebug("dotnet (stderr): {Error}", error); 46_logger.LogDebug("Running dotnet CLI to check for latest version of {PackageId} with arguments: {ArgumentList}", PackageId, spec.Arguments); 57_logger.LogDebug("The dotnet CLI call to check for latest version failed with exit code {ExitCode}.", processResult.ExitCode); 68_logger.LogDebug("Found {PackageCount} packages.", packages.Count);
VersionChecking\VersionCheckService.cs (6)
65_logger.LogDebug("App host version is not available, skipping version check."); 98_logger.LogDebug("Last version check was performed {IntervalSinceLastCheck} ago on {CheckDate}, skipping version check.", intervalSinceLastCheck, checkDateString); 115_logger.LogDebug("Using stored known latest version {StoredKnownLatestVersion}.", storedKnownLatestVersion); 125_logger.LogDebug("App host version is up to date or the latest version is unknown."); 134_logger.LogDebug("Ignoring version {Version} as it is less than or equal to the ignored version {IgnoreVersion}.", latestVersion, ignoreVersion); 159_logger.LogDebug("User chose to ignore version {Version}.", latestVersion);
Aspire.Hosting.Azure (19)
AcrLoginService.cs (3)
69_logger.LogDebug("AAD access token acquired for ACR audience, registry: {RegistryEndpoint}, token length: {TokenLength}", 76_logger.LogDebug("ACR refresh token acquired, length: {TokenLength}", refreshToken.Length); 96_logger.LogDebug("Exchanging AAD token for ACR refresh token at {ExchangeUrl} (tenant: {TenantId})",
AzureBicepResource.cs (2)
296context.Logger.LogDebug("Resource {ResourceName} is excluded from publish. Skipping provisioning.", resource.Name); 304context.Logger.LogDebug("Resource {ResourceName} is already provisioned. Skipping provisioning.", resource.Name);
AzurePublishingContext.cs (1)
464logger.LogDebug("Writing Bicep module {BicepName}.bicep to {TargetPath}", MainInfrastructure.BicepName, outputDirectoryPath);
Provisioning\Internal\BaseProvisioningContextProvider.cs (2)
310_logger.LogDebug("SubscriptionId '{SubscriptionId}' isn't a valid GUID. Skipping getting available resource groups from client.", subscriptionId); 345_logger.LogDebug("SubscriptionId '{SubscriptionId}' isn't a valid GUID. Skipping getting available locations from client.", subscriptionId);
Provisioning\Internal\BicepCompiler.cs (4)
53_logger.LogDebug("{CommandPath} (stdout): {Output}", commandPath, data); 58_logger.LogDebug("{CommandPath} (stderr): {Error}", commandPath, data); 62_logger.LogDebug("Running {CommandPath} with arguments: {Arguments}", commandPath, arguments); 72_logger.LogDebug("Bicep compilation for {BicepFilePath} succeeded.", bicepFilePath);
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (1)
68_logger.LogDebug("Azure provisioning options have been handled successfully.");
Provisioning\Internal\RunModeProvisioningContextProvider.cs (1)
83_logger.LogDebug("Azure provisioning options have been handled successfully.");
Provisioning\Provisioners\BicepProvisioner.cs (5)
47logger.LogDebug("Checksum mismatch for resource {ResourceName}. Expected: {ExpectedChecksum}, Actual: {ActualChecksum}", resource.Name, currentCheckSum, configCheckSum); 51logger.LogDebug("Configuring resource {ResourceName} from existing deployment state.", resource.Name); 161logger.LogDebug("Setting parameters and scope for resource {ResourceName}", resource.Name); 181logger.LogDebug("Starting deployment of resource {ResourceName} to resource group {ResourceGroupName}", resource.Name, resourceGroup.Name); 216logger.LogDebug("Deployment of resource {ResourceName} to resource group {ResourceGroupName} completed in {Elapsed}", resource.Name, resourceGroup.Name, sw.Elapsed);
Aspire.Hosting.Azure.Kusto (2)
AzureKustoBuilderExtensions.cs (2)
283logger.LogDebug("Creating database '{DatabaseName}'", databaseResource.DatabaseName); 288logger.LogDebug("Database '{DatabaseName}' created successfully", databaseResource.DatabaseName);
Aspire.Hosting.DevTunnels (10)
DevTunnelCliClient.cs (1)
286logger?.LogDebug("Operation was cancelled.");
DevTunnelLoginManager.cs (6)
30_logger.LogDebug("Checking dev tunnel login status"); 34_logger.LogDebug("User already logged in to dev tunnel service as {Username} with {Provider}", loginStatus.Username, loginStatus.Provider); 56_logger.LogDebug("Prompting user to login to dev tunnel service"); 71_logger.LogDebug("User selected {LoginProvider} for dev tunnel login", selectedProvider); 91_logger.LogDebug("User already logged in to dev tunnel service as {Username} with {Provider}", loginStatus.Username, loginStatus.Provider); 95_logger.LogDebug("User login to dev tunnel service failed, retrying login prompt");
DevTunnelResourceBuilderExtensions.cs (2)
150logger.LogDebug("Dev tunnel '{TunnelId}' created", tunnelResource.TunnelId); 705portLogger.LogDebug("Anonymous access status unavailable for port at this time (tunnel or port access status null)");
IDevTunnelClient.cs (1)
132logger.LogDebug("Anonymous access: TunnelAllow={TunnelAllow} InheritedAllow={InheritedAllow} ExplicitAllow={ExplicitAllow} ExplicitDeny={ExplicitDeny} Effective={Effective}",
Aspire.Hosting.Docker (6)
DockerComposeEnvironmentResource.cs (4)
234context.Logger.LogDebug("Running docker compose up with arguments: {Arguments}", arguments); 244context.Logger.LogDebug("docker compose up (stdout): {Output}", output); 248context.Logger.LogDebug("docker compose up (stderr): {Error}", error); 296context.Logger.LogDebug("Running docker compose down with arguments: {Arguments}", arguments);
DockerComposeServiceResource.cs (2)
393context.Logger.LogDebug("docker compose ps (stderr): {Error}", error); 408context.Logger.LogDebug("docker compose ps failed with exit code {ExitCode}", processResult.ExitCode);
Aspire.Hosting.JavaScript (5)
JavaScriptHostingExtensions.cs (5)
1044logger.LogDebug("Detected Node.js version {Version} from .nvmrc file", version); 1056logger.LogDebug("Detected Node.js version {Version} from .node-version file", version); 1075logger.LogDebug("Detected Node.js version {Version} from package.json engines.node field", version); 1100logger.LogDebug("Detected Node.js version {Version} from .tool-versions file", version); 1108logger.LogDebug("No Node.js version detected, using default version {DefaultVersion}", DefaultNodeVersion);
Aspire.Hosting.Maui (2)
Utilities\MauiEnvironmentHelper.cs (2)
177logger.LogDebug("Pruned {Count} stale Android environment targets file(s): {Files}", deletedFiles.Count, string.Join(", ", deletedFiles)); 332logger.LogDebug("Pruned {Count} stale iOS environment targets file(s): {Files}", deletedFiles.Count, string.Join(", ", deletedFiles));
Aspire.Hosting.MySql (2)
MySqlBuilderExtensions.cs (2)
147logger.LogDebug("Creating database '{DatabaseName}'", sqlDatabase.DatabaseName); 167logger.LogDebug("Database '{DatabaseName}' created successfully", sqlDatabase.DatabaseName);
Aspire.Hosting.PostgreSQL (3)
PostgresBuilderExtensions.cs (3)
703logger.LogDebug("Creating database '{DatabaseName}'", npgsqlDatabase.DatabaseName); 711logger.LogDebug("Database '{DatabaseName}' created successfully", npgsqlDatabase.DatabaseName); 716logger.LogDebug("Database '{DatabaseName}' already exists", npgsqlDatabase.DatabaseName);
Aspire.Hosting.SqlServer (2)
SqlServerBuilderExtensions.cs (2)
255logger.LogDebug("Creating database '{DatabaseName}'", sqlDatabase.DatabaseName); 312logger.LogDebug("Database '{DatabaseName}' created successfully", sqlDatabase.DatabaseName);
Aspire.Hosting.Testing.Tests (1)
ResourceLoggerForwarderServiceTests.cs (1)
116resourceLogger.LogDebug("Test debug message");
Aspire.Hosting.Tests (2)
Cli\CliOrphanDetectorTests.cs (1)
201testLogger.LogDebug($"IsProcessRunning called. Running count: {processRunningCallCounter}. IsProcessRunning: {isProcessRunning}");
Pipelines\DistributedApplicationPipelineTests.cs (1)
1352logger.LogDebug($"Debug message");
aspire-server (36)
AssemblyLoader.cs (2)
28logger.LogDebug("Registered assembly resolver for integration libs at {Path}", libsPath); 63logger.LogDebug("Loaded assembly: {AssemblyName}", name);
Ats\CapabilityDispatcher.cs (2)
92_logger.LogDebug("Scanning {AssemblyCount} assemblies for capabilities...", assemblyList.Count); 136_logger.LogDebug("Registered {CapabilityCount} capabilities", _capabilities.Count);
AtsContextFactory.cs (2)
30logger.LogDebug("Creating AtsContext from {AssemblyCount} assemblies...", assemblies.Count); 48logger.LogDebug("Scanned {CapabilityCount} capabilities, {HandleTypeCount} handle types, {DtoCount} DTOs, {EnumCount} enums",
CodeGeneration\CodeGenerationService.cs (3)
52_logger.LogDebug("<< getCapabilities() completed in {ElapsedMs}ms", sw.ElapsedMilliseconds); 151_logger.LogDebug(">> generateCode({Language})", language); 164_logger.LogDebug("<< generateCode({Language}) completed in {ElapsedMs}ms, generated {FileCount} files", language, sw.ElapsedMilliseconds, files.Count);
CodeGeneration\CodeGeneratorResolver.cs (1)
71_logger.LogDebug("Discovered code generator: {TypeName} for language '{Language}'", type.Name, generator.Language);
JsonRpcServer.cs (11)
88_logger.LogDebug("Waiting for client connection..."); 103_logger.LogDebug("Client connected"); 158_logger.LogDebug("Waiting for client connection..."); 162_logger.LogDebug("Client connected"); 191_logger.LogDebug("Creating DI scope for client {ClientId}", clientId); 216_logger.LogDebug("JsonRpc connection established for client {ClientId} (bidirectional)", clientId); 230_logger.LogDebug("Client {ClientId}: {DisconnectReason}", clientId, disconnectReason); 241_logger.LogDebug("Client {ClientId}: {DisconnectReason}", clientId, disconnectReason); 272_logger.LogDebug("Connection cleanup completed for client {ClientId}", clientId); 276_logger.LogDebug("Active clients remaining: {RemainingClients}", remaining); 301_logger.LogDebug("JsonRpcServer disposed");
Language\LanguageService.cs (7)
37_logger.LogDebug(">> scaffoldAppHost({Language}, {TargetPath}, {ProjectName})", language, targetPath, projectName); 56_logger.LogDebug("<< scaffoldAppHost({Language}) completed in {ElapsedMs}ms, generated {FileCount} files", language, sw.ElapsedMilliseconds, files.Count); 74_logger.LogDebug(">> detectAppHostType({DirectoryPath})", directoryPath); 84_logger.LogDebug("<< detectAppHostType({DirectoryPath}) found {Language} in {ElapsedMs}ms", directoryPath, result.Language, sw.ElapsedMilliseconds); 89_logger.LogDebug("<< detectAppHostType({DirectoryPath}) not found in {ElapsedMs}ms", directoryPath, sw.ElapsedMilliseconds); 107_logger.LogDebug(">> getRuntimeSpec({Language})", language); 120_logger.LogDebug("<< getRuntimeSpec({Language}) completed in {ElapsedMs}ms", language, sw.ElapsedMilliseconds);
Language\LanguageSupportResolver.cs (1)
80_logger.LogDebug("Discovered language support: {TypeName} for language '{Language}'", type.Name, language.Language);
OrphanDetector.cs (3)
43_logger.LogDebug("No parent PID specified, orphan detection disabled"); 47_logger.LogDebug("Monitoring parent process PID: {ParentPid}", pid); 64_logger.LogDebug("OrphanDetector: Stopped");
RemoteAppHostService.cs (4)
58_logger.LogDebug("cancelToken({TokenId})", tokenId); 73_logger.LogDebug(">> invokeCapability({CapabilityId}) args: {Args}", capabilityId, args?.ToJsonString() ?? "null"); 78_logger.LogDebug(" invokeCapability({CapabilityId}) result: {Result}", capabilityId, result?.ToJsonString() ?? "null"); 111_logger.LogDebug("<< invokeCapability({CapabilityId}) completed in {ElapsedMs}ms", capabilityId, sw.ElapsedMilliseconds);
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.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 (8)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (5)
203Logger.LogDebug("Advancing timeProvider {timeSpan}.", timeSpan); 482Logger.LogDebug($"Reusing context for request stream {requestStreamId}."); 1241_testBase.Logger.LogDebug($"Disposing stream {StreamId}"); 1257_testBase.Logger.LogDebug($"Pooling stream {StreamId} for reuse."); 1263_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);
TlsListenerTests.cs (2)
45Logger.LogDebug("[Received TlsClientHelloBytesCallback] Connection: {0}; TLS client hello buffer: {1}", connection.ConnectionId, clientHelloBytes.Length); 88Logger.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.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)
311Logger.LogDebug("Saving Config to {configPath}", DeploymentParameters.ServerConfigLocation); 418Logger.LogDebug("Deleting applicationHost.config file from {configLocation}", DeploymentParameters.ServerConfigLocation); 499Logger.LogDebug($"EnumWindow returned {ptr} belonging to {windowProcessId}"); 516Logger.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)
38context.Logger.LogDebug(CoreStrings.FallbackToIPv4Any, IPEndPoint.Port, IPEndPoint.Port);
Internal\AddressBinder.cs (1)
183context.Logger.LogDebug(CoreStrings.BindingToDefaultAddress, Constants.DefaultServerAddress);
Internal\KestrelServerImpl.cs (1)
350Trace.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)
203Logger.LogDebug("Advancing timeProvider {timeSpan}.", timeSpan); 482Logger.LogDebug($"Reusing context for request stream {requestStreamId}."); 1241_testBase.Logger.LogDebug($"Disposing stream {StreamId}"); 1257_testBase.Logger.LogDebug($"Pooling stream {StreamId} for reuse."); 1263_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.ExternalAccess.HotReload (2)
Api\HotReloadMSBuildWorkspace.cs (2)
175_logger.LogDebug("Could not find document with path '{FilePath}' in the workspace.", path); 187_logger.LogDebug("Updating document text of '{FilePath}'.", path);
Microsoft.CodeAnalysis.LanguageServer (18)
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 '{string.Join(' ', arguments)}'"); 120_logger.LogDebug($"Using vstest console at {vstestConsole}");
FileBasedPrograms\VirtualProjectXmlProvider.cs (2)
47process.ErrorDataReceived += (sender, args) => logger.LogDebug($"[stderr] dotnet run-api: {args.Data}"); 55logger.LogDebug($"dotnet run-api exited with exit code '{process.ExitCode}'.");
HostWorkspace\LanguageServerWorkspaceFactory.cs (1)
105_logger.LogDebug($"Solution-level analyzer at {analyzerPath} added to workspace.");
HostWorkspace\ProjectInitializationHandler.cs (1)
114_logger.LogDebug("Devkit project initialization completed");
LanguageServer\Handler\Restore\RestoreHandler.cs (3)
40_logger.LogDebug($"Restore was requested but no paths were provided."); 45_logger.LogDebug($"Running restore on {restorePaths.Length} paths, starting with '{restorePaths.First()}'."); 52_logger.LogDebug($"Restore completed successfully.");
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)
45_logger.LogDebug($"Test run completed in {testRunCompleteArgs.ElapsedTimeInRunningTests}");
Microsoft.DotNet.Build.Tasks.Feed (6)
src\ProductionChannelValidator.cs (6)
173_logger.LogDebug($"Validating Azure DevOps tags for build {build.Id}"); 185_logger.LogDebug($"Build {build.Id} has required tag '{RequiredAzureDevOpsTag}'"); 232_logger.LogDebug($"Checking branch classification for {azureDevOpsAccount}/{projectId}/{repositoryId}, branch: {branchName}"); 243_logger.LogDebug($"Branch '{branchName}' is classified as a production branch"); 396_logger.LogDebug($"Fetching build info from: {url}"); 449_logger.LogDebug($"Fetching branch classifications from: {url}");
Microsoft.Extensions.Caching.Memory (3)
MemoryCache.cs (3)
542_logger.LogDebug("Overcapacity compaction triggered"); 567_logger.LogDebug($"Overcapacity compaction executing. Current size {currentSize}"); 580_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)
168logger.LogDebug("This record should be marked as being disabled"); 174logger.LogDebug("This record should be marked as being enabled"); 189logger.LogDebug("BEFORE"); 191logger.LogDebug("AFTER"); 209logger.LogDebug("M1"); 231logger.LogDebug("M1"); 234logger.LogDebug("M1"); 237logger.LogDebug("M2"); 256logger.LogDebug("M1"); 257logger.LogDebug("M2"); 260logger.LogDebug("M3"); 261logger.LogDebug("M4");
OrderProcessor (1)
OrderProcessingWorker.cs (1)
61_logger.LogDebug("""
Sockets.BindTests (1)
src\Servers\Kestrel\shared\test\TransportTestHelpers\TestServer.cs (1)
118Context.Log.LogDebug($"TestServer is listening on port {Port}");
Sockets.FunctionalTests (3)
src\Servers\Kestrel\shared\test\TransportTestHelpers\TestServer.cs (1)
118Context.Log.LogDebug($"TestServer is listening on port {Port}");
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 (1)
TelemetryStresser.cs (1)
79logger.LogDebug($"Export complete. Rejected count: {result.RejectedDataPoints}");
SystemdTestApp (1)
Startup.cs (1)
28logger.LogDebug($"Peer: {connectionFeature.RemoteIpAddress?.ToString()}:{connectionFeature.RemotePort}"