DEV Community

Discussion on: Ignore Console.log() From Now On!

Collapse
 
ltvan profile image
Van Ly

Be better at the both debugger and logging, not just one of those. If nodejs would have multi threading, you should know that console.log would be your friend, because step by step debugger would be broken at all. That's the experience in Java and C# world. Logging may provide wrong context, that's just because you provide no context to yourself, so don't blame console.log.