DEV Community

Discussion on: Ditch Console Log

Collapse
 
camdhall profile image
CamDHall

One thing to consider, with logpoint you won't have to remove it once you're finished. If you sprinkle a bunch of console logs into your code, you should remove those before pushing to production. If you're using logpoint, you don't need to do this at all.

Collapse
 
ludamillion profile image
Luke Inglis

That's certainly a positive of that approach.

I always lint my code before committing it anyway so that keeps me from accidentally publishing a log statement.