23 references to Logger
Aspire.Hosting (10)
ApplicationModel\ProjectResource.cs (1)
128var logger = ctx.Logger;
Pipelines\DistributedApplicationPipeline.cs (7)
72context.Logger.LogInformation("Initializing deployment for environment '{EnvironmentName}'", hostEnvironment.EnvironmentName); 81context.Logger.LogInformation("Deployment state will be loaded from: {StateFilePath}", stateFilePath); 104context.Logger.LogInformation("User declined to clear deployment state. Canceling pipeline execution."); 110context.Logger.LogInformation("Deleting deployment state file at {Path} due to --clear-cache flag", stateFilePath); 122context.Logger.LogInformation("Setting default deploy tag '{Tag}' for compute resource(s).", uniqueDeployTag); 183context.Logger, 662stepContext.Logger.LogError(ex, "Step '{StepName}' failed.", step.Name);
Pipelines\PipelineStepHelpers.cs (2)
35context.Logger, 42context.Logger.LogInformation("Skipping push for resource '{ResourceName}' - destination is {Destination}, not Registry",
Aspire.Hosting.Azure (3)
AzureBicepResource.cs (2)
296context.Logger.LogDebug("Resource {ResourceName} is excluded from publish. Skipping provisioning.", resource.Name); 304context.Logger.LogDebug("Resource {ResourceName} is already provisioned. Skipping provisioning.", resource.Name);
AzureEnvironmentResource.cs (1)
158context.Logger,
Aspire.Hosting.Docker (9)
DockerComposeEnvironmentResource.cs (6)
209context.Logger, 234context.Logger.LogDebug("Running docker compose up with arguments: {Arguments}", arguments); 244context.Logger.LogDebug("docker compose up (stdout): {Output}", output); 248context.Logger.LogDebug("docker compose up (stderr): {Error}", error); 296context.Logger.LogDebug("Running docker compose down with arguments: {Arguments}", arguments); 342var envFile = EnvFile.Create(envFilePath, context.Logger);
DockerComposeServiceResource.cs (3)
342? ParseServiceEndpoints(outputLines, externalEndpointMappings, context.Logger) 390context.Logger.LogDebug("docker compose ps (stderr): {Error}", error); 405context.Logger.LogDebug("docker compose ps failed with exit code {ExitCode}", processResult.ExitCode);
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentResource.cs (1)
119context.Logger,