Fix logging batcher max size
This commit is contained in:
parent
37aa3146bb
commit
6320e1f3a7
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ const IS_PRODUCTION = env === 'production';
|
||||||
|
|
||||||
const ipcBatcher = createBatcher({
|
const ipcBatcher = createBatcher({
|
||||||
wait: 500,
|
wait: 500,
|
||||||
size: 20,
|
maxSize: 20,
|
||||||
processBatch: items => {
|
processBatch: items => {
|
||||||
ipc.send('batch-log', items);
|
ipc.send('batch-log', items);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue