1 write to _logger
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
23_logger = logger ?? throw new ArgumentNullException(nameof(logger));
15 references to _logger
Aspire.Hosting (15)
Publishing\ContainerRuntimeBase.cs (15)
29protected ILogger<TLogger> Logger => _logger; 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); 124_logger.LogError("{RuntimeName} login to {RegistryServer} failed with exit code {ExitCode}.", Name, registryServer, processResult.ExitCode); 128_logger.LogInformation("{RuntimeName} login to {RegistryServer} succeeded.", Name, registryServer); 151_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 163_logger.LogError(errorLogTemplate, errorArgs); 167_logger.LogInformation(successLogTemplate, logArguments); 200_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 212_logger.LogError(errorLogTemplate, errorArgs); 216_logger.LogDebug(successLogTemplate, logArguments); 283_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 287_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error);