1 write to RawContent
Aspire.Dashboard (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
55RawContent = rawLogContent,
7 references to RawContent
Aspire.Dashboard (4)
Components\Pages\ConsoleLogs.razor.cs (2)
926if (entry.RawContent is not null) 928writer.WriteLine(AnsiParser.StripControlSequences(entry.RawContent));
Model\Assistant\AIHelpers.cs (2)
301if (logEntry.RawContent is not null) 303var content = logEntry.RawContent;
Aspire.Dashboard.Components.Tests (3)
Pages\ConsoleLogsTests.cs (3)
776var newLog = Assert.Single(logViewer.Instance.LogEntries!.GetEntries(), e => e.RawContent == resumeContent); 779Assert.DoesNotContain(pauseContent, logViewer.Instance.LogEntries!.GetEntries().Select(e => e.RawContent)); 788logger.LogInformation($"Log line. Type = {logEntry.Type}, Raw content = {logEntry.RawContent ?? "no content"}, Pause content: {logEntry.Pause?.GetDisplayText(loc, browserTimeProvider) ?? "n/a"}");