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)
625if (entry.RawContent is not null) 627writer.WriteLine(AnsiParser.StripControlSequences(entry.RawContent));
Aspire.Dashboard.Components.Tests (3)
Pages\ConsoleLogsTests.cs (3)
512var newLog = Assert.Single(logViewer.Instance.LogEntries!.GetEntries(), e => e.RawContent == resumeContent); 515Assert.DoesNotContain(pauseContent, logViewer.Instance.LogEntries!.GetEntries().Select(e => e.RawContent)); 524logger.LogInformation($"Log line. Type = {logEntry.Type}, Raw content = {logEntry.RawContent ?? "no content"}, Pause content: {logEntry.Pause?.GetDisplayText(loc, browserTimeProvider) ?? "n/a"}");