1 write to RawContent
Aspire.Dashboard (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
52RawContent = rawLogContent,
5 references to RawContent
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (2)
664if (entry.RawContent is not null) 666writer.WriteLine(AnsiParser.StripControlSequences(entry.RawContent));
Aspire.Dashboard.Components.Tests (3)
Pages\ConsoleLogsTests.cs (3)
667var newLog = Assert.Single(logViewer.Instance.LogEntries!.GetEntries(), e => e.RawContent == resumeContent); 670Assert.DoesNotContain(pauseContent, logViewer.Instance.LogEntries!.GetEntries().Select(e => e.RawContent)); 679logger.LogInformation($"Log line. Type = {logEntry.Type}, Raw content = {logEntry.RawContent ?? "no content"}, Pause content: {logEntry.Pause?.GetDisplayText(loc, browserTimeProvider) ?? "n/a"}");