Closed azl397985856 closed 4 years ago
function myLog(...args) {
console.log('myLog', ...args);
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
打断点点方式最方便
我们在合作开发的过程中,经常碰到别人在代码中加入console.log的调试代码, 这个时候你在开发你的部分的时候就有可能由于引入他的组件,导致控制台出现很多你 并不关心的信息,干扰你的调试。
一种方式是禁止提交console的代码,那如果不可以禁止,我们怎么才能不看到别人的console输出, 而只看到自己的console呢?