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)
295context.Logger.LogDebug("Resource {ResourceName} is excluded from publish. Skipping provisioning.", resource.Name); 303context.Logger.LogDebug("Resource {ResourceName} is already provisioned. Skipping provisioning.", resource.Name);
AzureEnvironmentResource.cs (1)
134context.Logger,
Aspire.Hosting.Docker (9)
DockerComposeEnvironmentResource.cs (6)
211context.Logger, 236context.Logger.LogDebug("Running docker compose up with arguments: {Arguments}", arguments); 246context.Logger.LogDebug("docker compose up (stdout): {Output}", output); 250context.Logger.LogDebug("docker compose up (stderr): {Error}", error); 298context.Logger.LogDebug("Running docker compose down with arguments: {Arguments}", arguments); 344var envFile = EnvFile.Create(envFilePath, context.Logger);
DockerComposeServiceResource.cs (3)
326? ParseServiceEndpoints(outputLines, externalEndpointMappings, context.Logger) 374context.Logger.LogDebug("docker compose ps (stderr): {Error}", error); 389context.Logger.LogDebug("docker compose ps failed with exit code {ExitCode}", processResult.ExitCode);
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentResource.cs (1)
121context.Logger,