1 write to _logger
aspire (1)
Commands\RunCommand.cs (1)
118
_logger
= logger;
11 references to _logger
aspire (11)
Commands\RunCommand.cs (11)
633
_logger
.LogDebug("Starting AppHost in background: {AppHostPath}", effectiveAppHostFile.FullName);
644
_logger
.LogDebug("Waiting for socket with prefix: {SocketPrefix}, Hash: {Hash}", expectedSocketPrefix, expectedHash);
654
_logger
.LogDebug("Found {Count} running instance(s) for this AppHost, stopping them first", existingSockets.Length);
655
var manager = new RunningInstanceManager(
_logger
, _interactionService, _timeProvider);
706
_logger
.LogDebug("Spawning child CLI: {Executable} (isDotnetHost={IsDotnetHost}) with args: {Args}",
708
_logger
.LogDebug("Working directory: {WorkingDirectory}", ExecutionContext.WorkingDirectory.FullName);
756
_logger
.LogDebug("Child stdout: {Line}", e.Data);
763
_logger
.LogDebug("Child stderr: {Line}", e.Data);
771
_logger
.LogError(ex, "Failed to start child CLI process");
775
_logger
.LogDebug("Child CLI process started with PID: {PID}", childProcess.Id);
792
_logger
.LogWarning("Child CLI process exited with code {ExitCode}", childExitCode);