5
I'm working on a project where some library calls console.trace every refresh. Chrome then automaticly unfolds the trace, so that it takes over 20 lines on the console.
This takes too much space and I would much rather have it folded by default and only unfold when I click on it, like with litteraly everything else in the JS console.
Can this be done in Google Chrome, preferably without an extension? I have looked at all the option, but this seems to be impossible to disable.
1You could maybe override
console.tracewith custom code (in the development environment only). I'm not sure if this approach can solve your problem, it's just an idea to explore. – thirtydot – 2017-07-11T16:16:35.247