1 instantiation of LogEntry
Aspire.Dashboard (1)
ConsoleLogs\LogParser.cs (1)
49var logEntry = new LogEntry
8 references to LogEntry
Aspire.Dashboard (7)
Components\Pages\ConsoleLogs.razor.cs (1)
319var logEntry = logParser.CreateLogEntry(content, isErrorOutput);
ConsoleLogs\LogParser.cs (2)
13public LogEntry CreateLogEntry(string rawText, bool isErrorOutput) 49var logEntry = new LogEntry
src\Shared\ConsoleLogs\LogEntries.cs (4)
12private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount); 20public IList<LogEntry> GetEntries() => _logEntries; 30public void InsertSorted(LogEntry logLine) 61private void InsertSortedCore(LogEntry logEntry)
Aspire.Dashboard.Tests (1)
ConsoleLogsTests\LogEntriesTests.cs (1)
22var logEntry = logParser.CreateLogEntry(content, isError);