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