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)
29
protected 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);