Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Aspire.Dashboard/Components/Controls/LogViewer.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="@GetLogContainerClass()" id="logContainer">
@if (LogEntries is { } logEntries)
{
<Virtualize @ref="VirtualizeRef" ItemsProvider="@GetItems" ItemSize="20" OverscanCount="200" TItem="LogEntry">
<Virtualize @ref="VirtualizeRef" ItemsProvider="@GetItems" ItemSize="20" OverscanCount="200" TItem="LogEntry" ItemComparer="EqualityComparer<LogEntry>.Default">
@if (context.Pause is { } pause)
{
// If this is a previous pause but no logs were obtained during the pause, we don't need to show anything.
Expand Down
6 changes: 3 additions & 3 deletions src/Shared/ConsoleLogs/SharedAIHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ namespace Aspire.Shared.ConsoleLogs;
/// </summary>
internal static class SharedAIHelpers
{
public const int TracesLimit = 200;
public const int StructuredLogsLimit = 200;
public const int ConsoleLogsLimit = 500;
public const int TracesLimit = 800;
Comment thread
JamesNK marked this conversation as resolved.
public const int StructuredLogsLimit = 800;
public const int ConsoleLogsLimit = 2000;
public const int MaximumListTokenLength = 8192;
public const int MaximumStringLength = 2048;

Expand Down
Loading