4 implementations of Log
Aspire.Hosting (2)
Pipelines\NullPipelineActivityReporter.cs (1)
38
public void
Log
(LogLevel logLevel, string message, bool enableMarkdown)
Pipelines\ReportingStep.cs (1)
115
public void
Log
(LogLevel logLevel, string message, bool enableMarkdown = true)
Aspire.Hosting.Azure.Tests (1)
AzureDeployerTests.cs (1)
1413
public void
Log
(LogLevel logLevel, string message, bool enableMarkdown)
Aspire.Hosting.Tests (1)
Pipelines\PipelineLoggerProviderTests.cs (1)
145
public void
Log
(LogLevel logLevel, string message, bool enableMarkdown = false)
7 references to Log
Aspire.Hosting (2)
Pipelines\DistributedApplicationPipeline.cs (1)
941
context.ReportingStep.
Log
(LogLevel.Information, sb.ToString(), enableMarkdown: false);
Pipelines\PipelineLoggerProvider.cs (1)
97
step.
Log
(logLevel, message, enableMarkdown: false);
Aspire.Hosting.Azure.AppContainers (2)
AzureContainerAppResource.cs (2)
87
ctx.ReportingStep.
Log
(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
91
ctx.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 (1)
AzureAppServiceWebSiteResource.cs (1)
87
ctx.ReportingStep.
Log
(LogLevel.Information, $"Successfully deployed **{targetResource.Name}** to [{endpoint}]({endpoint})", enableMarkdown: true);
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (2)
911
step.
Log
(logLevel, logMessage, enableMarkdown: true);
942
step.
Log
(LogLevel.Information, "Test log", enableMarkdown: false);