1 write to _logger
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
22_logger = logger ?? throw new ArgumentNullException(nameof(logger));
15 references to _logger
Aspire.Hosting (15)
Publishing\ContainerRuntimeBase.cs (15)
28protected ILogger<TLogger> Logger => _logger; 93_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 97_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error); 103_logger.LogDebug("Running {RuntimeName} with arguments: {Arguments}", RuntimeExecutable, arguments); 104_logger.LogDebug("Password length being passed to stdin: {PasswordLength}", password?.Length ?? 0); 115_logger.LogError("{RuntimeName} login to {RegistryServer} failed with exit code {ExitCode}.", Name, registryServer, processResult.ExitCode); 119_logger.LogInformation("{RuntimeName} login to {RegistryServer} succeeded.", Name, registryServer); 142_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 154_logger.LogError(errorLogTemplate, errorArgs); 158_logger.LogInformation(successLogTemplate, logArguments); 191_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 203_logger.LogError(errorLogTemplate, errorArgs); 207_logger.LogDebug(successLogTemplate, logArguments); 274_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 278_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error);