6 implementations of Log
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
62public void Log(LogLevel logLevel, MarkdownString message)
Pipelines\ReportingStep.cs (1)
142public void Log(LogLevel logLevel, MarkdownString message)
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
216public void Log(LogLevel logLevel, MarkdownString message)
Aspire.Hosting.Docker.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
216public void Log(LogLevel logLevel, MarkdownString message)
Aspire.Hosting.Tests (2)
Pipelines\PipelineLoggerProviderTests.cs (1)
168public void Log(LogLevel logLevel, MarkdownString message)
tests\Shared\TestPipelineActivityReporter.cs (1)
216public void Log(LogLevel logLevel, MarkdownString message)
8 references to Log
Aspire.Hosting (1)
Ats\PipelineExports.cs (1)
79reportingStep.Log(ParseLogLevel(level), new MarkdownString(markdownString));
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppResource.cs (2)
56ctx.ReportingStep.Log(LogLevel.Information, new MarkdownString($"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})")); 61ctx.ReportingStep.Log(LogLevel.Information, new MarkdownString($"Successfully deployed **{targetResource.Name}** to Azure Container Apps environment **{containerAppEnv.Name}**. No public endpoints were configured."));
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebSiteResource.cs (1)
60ctx.ReportingStep.Log(LogLevel.Information, new MarkdownString($"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})"));
Aspire.Hosting.Docker (3)
DockerComposeServiceResource.cs (3)
334context.ReportingStep.Log(LogLevel.Information, 349context.ReportingStep.Log(LogLevel.Information, new MarkdownString($"Successfully deployed **{TargetResource.Name}** to {endpointList}.")); 355context.ReportingStep.Log(LogLevel.Information,
Aspire.Hosting.Tests (1)
Publishing\PipelineActivityReporterTests.cs (1)
963step.Log(logLevel, new MarkdownString(logMessage));