6 implementations of Log
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
38public void Log(LogLevel logLevel, string message, bool enableMarkdown)
Pipelines\ReportingStep.cs (1)
115public void Log(LogLevel logLevel, string message, bool enableMarkdown = true)
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
168public void Log(LogLevel logLevel, string message, bool enableMarkdown)
Aspire.Hosting.Docker.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
168public void Log(LogLevel logLevel, string message, bool enableMarkdown)
Aspire.Hosting.Tests (2)
Pipelines\PipelineLoggerProviderTests.cs (1)
145public void Log(LogLevel logLevel, string message, bool enableMarkdown = false)
tests\Shared\TestPipelineActivityReporter.cs (1)
168public void Log(LogLevel logLevel, string message, bool enableMarkdown)
14 references to Log
Aspire.Hosting (2)
Pipelines\DistributedApplicationPipeline.cs (1)
1052context.ReportingStep.Log(LogLevel.Information, sb.ToString(), enableMarkdown: false);
Pipelines\PipelineLoggerProvider.cs (1)
97step.Log(logLevel, message, enableMarkdown: false);
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppResource.cs (2)
63ctx.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true); 67ctx.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to Azure Container Apps environment **{containerAppEnv.Name}**. No public endpoints were configured.", enableMarkdown: true);
Aspire.Hosting.Azure.AppService (5)
AzureAppServiceWebSiteResource.cs (5)
63ctx.ReportingStep.Log(LogLevel.Information, $"Website {websiteName} does not exist. Adding annotation to refresh provisionable resource", false); 96ctx.ReportingStep.Log(LogLevel.Information, $"Updated provisionable resource to deploy website and deployment slot", false); 100ctx.ReportingStep.Log(LogLevel.Warning, $"No environment context annotation on the environment resource", false); 132ctx.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true); 211context.ReportingStep.Log(LogLevel.Information, $"Check if website {websiteName} exists", false);
Aspire.Hosting.Docker (3)
DockerComposeServiceResource.cs (3)
317context.ReportingStep.Log(LogLevel.Information, 332context.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{TargetResource.Name}** to {endpointList}.", enableMarkdown: true); 337context.ReportingStep.Log(LogLevel.Information,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (2)
911step.Log(logLevel, logMessage, enableMarkdown: true); 942step.Log(LogLevel.Information, "Test log", enableMarkdown: false);