1 write to _logger
aspire (1)
Projects\ProcessGuestLauncher.cs (1)
34
_logger
= logger;
7 references to _logger
aspire (7)
Projects\ProcessGuestLauncher.cs (7)
59
_logger
.LogError("Command '{Command}' not found in PATH", command);
68
_logger
.LogDebug("{ExecutingCommandPrefix}{Command} {Args}", CliLogFormat.MessagePrefixes.Executing, resolvedCommandPath, string.Join(" ", args));
91
_logger
.LogTrace("{Language}({ProcessId}) stdout: {Line}", _language, pid, line);
103
_logger
.LogTrace("{Language}({ProcessId}) stderr: {Line}", _language, pid, line);
153
_logger
.LogDebug("{Language} guest process {ProcessId} started: {Command}", _language, execution.ProcessId, resolvedCommandPath);
165
_logger
.LogInformation("Cancellation requested while waiting for {Language} guest process {ProcessId} to exit", _language, execution.ProcessId));
183
_logger
.LogDebug("{Language} guest process {ProcessId} exited with code {ExitCode}", _language, execution.ProcessId, finalExitCode);