From c5040122cd8b15df129ba2db86074c4aaffc12b0 Mon Sep 17 00:00:00 2001 From: nicoleczhu Date: Thu, 10 Jun 2021 21:51:59 -0700 Subject: [PATCH 1/2] feat: increase DefaultEntryByteThreshold to 8Mb --- logging/logging.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logging/logging.go b/logging/logging.go index 81ede6afb0c..0a92941c1bb 100644 --- a/logging/logging.go +++ b/logging/logging.go @@ -75,7 +75,7 @@ const ( DefaultEntryCountThreshold = 1000 // DefaultEntryByteThreshold is the default value for the EntryByteThreshold LoggerOption. - DefaultEntryByteThreshold = 1 << 20 // 1MiB + DefaultEntryByteThreshold = 1 << 23 // 8MiB // DefaultBufferedByteLimit is the default value for the BufferedByteLimit LoggerOption. DefaultBufferedByteLimit = 1 << 30 // 1GiB From 5d2ac315c8a9741f93664e06abb1bf448c581bef Mon Sep 17 00:00:00 2001 From: nicoleczhu Date: Tue, 29 Jun 2021 09:43:27 -0700 Subject: [PATCH 2/2] feat!: increase defaultEntryByteThreshold