cmd/cli: correct log writer initial size

This commit is contained in:
Cuong Manh Le
2025-01-10 09:43:16 +07:00
committed by Cuong Manh Le
parent 6046789fa4
commit 3713cbecc3
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ import (
const (
logWriterSize = 1024 * 1024 * 5 // 5 MB
logWriterInitialSize = 32 // 32 B
logWriterInitialSize = 32 * 1024 // 32 KB
logSentInterval = time.Minute
logTruncatedMarker = "...\n"
)