1 write to RawContent
Aspire.Dashboard (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
55RawContent = rawLogContent,
9 references to RawContent
Aspire.Dashboard (6)
Model\TelemetryExportService.cs (2)
140.Select(e => e.RawContent is not null ? AnsiParser.StripControlSequences(e.RawContent) : string.Empty)
src\Shared\ConsoleLogs\LogEntrySerializer.cs (2)
27if (entry.RawContent is not null) 29writer.WriteLine(AnsiParser.StripControlSequences(entry.RawContent));
src\Shared\ConsoleLogs\SharedAIHelpers.cs (2)
627if (logEntry.RawContent is not null) 629var content = logEntry.RawContent;
Aspire.Dashboard.Components.Tests (3)
Pages\ConsoleLogsTests.cs (3)
816var newLog = Assert.Single(logViewer.Instance.LogEntries!.GetEntries(), e => e.RawContent == resumeContent); 819Assert.DoesNotContain(pauseContent, logViewer.Instance.LogEntries!.GetEntries().Select(e => e.RawContent)); 828logger.LogInformation($"Log line. Type = {logEntry.Type}, Raw content = {logEntry.RawContent ?? "no content"}, Pause content: {logEntry.Pause?.GetDisplayText(loc, browserTimeProvider) ?? "n/a"}");