This commit is contained in:
2026-01-26 20:45:39 +01:00
parent 123b90f559
commit c666730b34
8 changed files with 15 additions and 12 deletions

View File

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