17 references to Logger
Aspire.Hosting (7)
ApplicationModel\ProjectResource.cs (1)
92var logger = ctx.Logger;
Pipelines\DistributedApplicationPipeline.cs (6)
67context.Logger.LogInformation("Initializing deployment for environment '{EnvironmentName}'", hostEnvironment.EnvironmentName); 76context.Logger.LogInformation("Deployment state will be loaded from: {StateFilePath}", stateFilePath); 99context.Logger.LogInformation("User declined to clear deployment state. Canceling pipeline execution."); 105context.Logger.LogInformation("Deleting deployment state file at {Path} due to --clear-cache flag", stateFilePath); 117context.Logger.LogInformation("Setting default deploy tag '{Tag}' for compute resource(s).", uniqueDeployTag); 567stepContext.Logger.LogError(ex, "Step '{StepName}' failed.", step.Name);
Aspire.Hosting.Azure (3)
AzureBicepResource.cs (2)
294context.Logger.LogDebug("Resource {ResourceName} is excluded from publish. Skipping provisioning.", resource.Name); 302context.Logger.LogDebug("Resource {ResourceName} is already provisioned. Skipping provisioning.", resource.Name);
AzureEnvironmentResource.cs (1)
130context.Logger,
Aspire.Hosting.Docker (6)
DockerComposeEnvironmentResource.cs (6)
192context.Logger, 225context.Logger.LogDebug("Running docker compose up with project name: {ProjectName}, arguments: {Arguments}", projectName, arguments); 235context.Logger.LogDebug("docker compose up (stdout): {Output}", output); 239context.Logger.LogDebug("docker compose up (stderr): {Error}", error); 295context.Logger.LogDebug("Running docker compose down with project name: {ProjectName}, arguments: {Arguments}", projectName, arguments); 341var envFile = EnvFile.Create(envFilePath, context.Logger);
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentResource.cs (1)
118context.Logger,