Doubt with javascript console.log

1

I have a javascript that performs some actions on a website. I go through the console to know what is happening, but at several moments it executes a command that printa in console console.log ("check");

I want to make this "check" not appear on the console because it repeats itself all the time and fouls the screen. if I simply delete console.log ("check") it stops working? or just to start on the console?

Thank you in advance.

    
asked by anonymous 11.11.2015 / 01:17

1 answer

3

Just to start on the console. The console.log function is only meant to print something on the console, it does nothing else.

You can find more information about the console here at the same site: What is console.log?

    
11.11.2015 / 01:37