You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitpane.WriteLineAsync($"[AZD]: Unable to synthesize infrastructure:{stdErr}:{result.ExitCode}");
49
+
awaitpane.WriteLineAsync(OutputWindowManager.GenerateOutputMessage($"Unable to synthesize infrastructure:{stdErr}:{result.ExitCode}","InfraSynth",LogLevel.Error));
48
50
gotoCleanup;
49
51
}
50
52
else
51
53
{
52
-
awaitpane.WriteLineAsync($"[AZD]: infra synth completed");
awaitpane.WriteLineAsync($"[.NET Aspire]: Unable to create manifest:{stdErr}:{result.ExitCode}");
60
+
awaitpane.WriteLineAsync(OutputWindowManager.GenerateOutputMessage($"Unable to create manifest:{stdErr}:{result.ExitCode}","ManifestGen",LogLevel.Error));
59
61
gotoCleanup;
60
62
}
61
63
else
62
64
{
63
-
awaitpane.WriteLineAsync($"[.NET Aspire]: Manifest created at {manifestPath}");
65
+
awaitpane.WriteLineAsync(OutputWindowManager.GenerateOutputMessage($"Manifest created at {manifestPath}","ManifestGen",LogLevel.Information));
0 commit comments