Limited the number of logs kept in memory

This commit is contained in:
2025-05-06 14:06:54 +03:00
parent 3e4709148f
commit e6976a5a74
3 changed files with 28 additions and 29 deletions

View File

@@ -31,6 +31,8 @@
<button class="btn btn-success mb-2" @onclick="StartApplication" disabled="@IsRunning">Start Application</button>
<button class="btn btn-danger mb-2" @onclick="StopApplication" disabled="@(!IsRunning)">Stop Application</button>
<button class="btn btn-info mb-2" @onclick="LoadPlugins" disabled="@(!IsRunning)">Load Plugins</button>
<button class="btn btn-warning mb-2" @onclick="ClearLogs">Clear Logs</button>
</div>
</div>
</div>
@@ -48,6 +50,7 @@
@code {
private bool IsRunning { get; set; }
private List<ILogMessage> _Logs { get; set; } = new();
private const int MaxLogLines = 1000;
protected override void OnInitialized()
{
@@ -60,6 +63,11 @@
InvokeAsync(async () =>
{
_Logs.Add(obj);
if (_Logs.Count > MaxLogLines)
{
_Logs.RemoveAt(0);
}
StateHasChanged();
await JS.InvokeVoidAsync("scrollToBottom", "consoleLog");
});
@@ -109,4 +117,9 @@
_ => ""
};
}
private void ClearLogs()
{
_Logs.Clear();
}
}