From cf6f4a91745241ff59271b14099d5b2200c5c259 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 14 Jan 2021 16:40:50 -0600 Subject: [PATCH] Bump logging batch size from 20 to 500 --- js/logging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/logging.js b/js/logging.js index 6671d068ad..2cf6e7baa9 100644 --- a/js/logging.js +++ b/js/logging.js @@ -106,7 +106,7 @@ const IS_PRODUCTION = env === 'production'; const ipcBatcher = createBatcher({ wait: 500, - maxSize: 20, + maxSize: 500, processBatch: items => { ipc.send('batch-log', items); },