6 implementations of Log
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
45public 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)
198public void Log(LogLevel logLevel, string message, bool enableMarkdown)
Aspire.Hosting.Docker.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
198public 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)
198public void Log(LogLevel logLevel, string message, bool enableMarkdown)
11 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 (2)
AzureAppServiceEnvironmentResource.cs (1)
197context.ReportingStep.Log(LogLevel.Error, error, enableMarkdown: false);
AzureAppServiceWebSiteResource.cs (1)
65ctx.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
Aspire.Hosting.Docker (3)
DockerComposeServiceResource.cs (3)
333context.ReportingStep.Log(LogLevel.Information, 348context.ReportingStep.Log(LogLevel.Information, $"Successfully deployed **{TargetResource.Name}** to {endpointList}.", enableMarkdown: true); 353context.ReportingStep.Log(LogLevel.Information,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (2)
958step.Log(logLevel, logMessage, enableMarkdown: true); 989step.Log(LogLevel.Information, "Test log", enableMarkdown: false);