DEV Community

Discussion on: Stop Console.Logging! This is How to Use Chrome to Debug JavaScript

Collapse
 
smeijer profile image
Stephan Meijer

Completely agree. Also, console.table and console.time can be quite handy.

However, I do hope that people are aware that the simple console.log can be set trough devtools as well. Quite often, there is no need to add it to your source directly.

(click right on the line number in chrome devtools and select add logpoint)