DEV Community

Discussion on: Remove console.log from Production Mode

Collapse
 
talr98 profile image
Tal Rofe

Overriding Nodejs built in functions is very bad practice.
The phases a developer should take are

  1. Create a Logger service
  2. Allow "console.log" calls to present in the code
  3. Add ESLint rule to forbid this use of "console.log" in CI/CD process