This commit is contained in:
2026-01-26 20:51:32 +01:00
parent c666730b34
commit 155fceeb71
6 changed files with 12 additions and 6 deletions

View File

@@ -261,7 +261,7 @@ namespace EonaCat.Logger.Server
{
char[] buffer = new char[8192]; // 8KB buffer size for large data
int bytesRead;
StringBuilderChill logData = new StringBuilderChill();
StringBuilder logData = new StringBuilder();
while ((bytesRead = await reader.ReadAsync(buffer, 0, buffer.Length)) > 0)
{