question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Excessive data volume leads to process stuck

See original GitHub issue
// IN RENDERER PROCESS
import log from 'electron-log'
log.transports.file.sync = false
console.log = log.info

But excessive data volume leads to process stuck

I use

var log4js = require('log4js');

There will be no such problem, I guess it may be that IPC does not allow too much data to be sent. I set “sync” is “false” but no effect

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:10 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
megahertzcommented, Apr 2, 2019

You don’t need to disable file and console transport. You need to disable rendererConsole and mainConsole transports.

1reaction
mtrucccommented, Apr 1, 2019
log.transports.file.level = false;
log.transports.console.level = false;

I have used the above code, but it has no effect and will still be stuck.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Problems with large volume of data - interface process gets ...
Hi! Has anybody come across the problem that interface, which is pumping large volume of data, is stuck in the middle?
Read more >
Orchestrator stuck when processing High volume data (with ...
Orchestrator gets stuck when processing high volume data. ... which means concurrency will be very poor, leading to poor throughput.
Read more >
About system overload - Stuck in the loop
Overload is normally detected at higher level, when something goes down, or, if we have metrics, when we see high cpu usage, errors...
Read more >
Amazon OpenSearch Service domain is stuck in "Processing"
Nodes are out of service because of a heavy processing load caused by high JVM memory pressure and CPU usage. To resolve this...
Read more >
10 Ways to Resolve a 100% Disk Usage on Windows 10 (2022)
Even Windows Defender can cause problems by increasing I/O and network usage which might lead to high disk usage. Way 8: Reset Virtual...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found