links: [[]]
How to remove all console.log statements in the project
- Open VS code search
- Type
console.log.*$ (*$ is a regex)
- Select use regex option
- Press Find All to find all log statements
- Select Replace All to remove all the logs
tags: vscode, log, remove