For some reason console.trace() doesn't show all traces in Electron application
function test ()
{
setTimeout(() => console.trace("test"));
}
test();
In Electron it only shows 1 line:
Any ideas why this happening and how to fix it?
Here is electron fiddle I'm testing it with