2
I have many commands console.log
in an archive regras.js
.
I wonder if there’s a way console.log
only in this file, since commenting each console.log would be very time consuming, as it has many.
Remarks:
I’ve used that resource:
But it doesn’t suit me since it disables the console.log
of all files.
console.log = Function() {}
Comments on all
console.log
with areplace all
from Notepad++.. in less than 10 seconds you do this– Marllon Nasser
console.log is not break point type that you can toggle all to disable/enable you can use some text editor to search for and replace these occurrences if you do console.log replace //console.log everything will be commented.
– Gabriel Rodrigues