I am working on project that uses quite a few js libraries and one of them is outputting awful lot into console, it is polluting the airwaves so bad that it makes it hard to
If it's an option to modify file, you can set a flag at top of file for disabling logs for that:
var DEBUG = false; DEBUG && console.log("cyberpunk 2077");
To disable logs for all js files, put it once at top of any js file:
var DEBUG = false; if (!DEBUG) { console.log = () => {}; }