作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想禁用 console.log 之类的 THREE.WebGLRenderer: Context Lost
,OBJLoader: 1.8330078125ms
等等。你有什么建议吗?
最佳答案
除了 OBJLoader2.setLogging
之外,没有内置的方法来禁用这些消息.
像这样的消息对于调试非常有用,不仅在您的开发环境中,而且当您的代码在现场时也是如此。
但是如果您很难消除这些消息,您可以重定向使用 console
对象的日志记录。
// Place this at the start of your code
const log = console.log;
console.log = () => {};
const warn = console.warn;
console.warn = () => {};
const error = console.error;
console.error = () => {};
有了这个,调用 console.log
、console.warn
和 console.error
的任何都将是沉默,甚至 es6
模块在你的主文件的范围之外。这甚至适用于控制台消息管理器,如 debug
.
但是您仍然可以使用重定向函数写入控制台。例如:
// In your code...
log("test message"); // will print "test message" to the console
这之所以有效,是因为您将对原始函数的引用保存到了变量中,例如 const log
。
关于three.js - 如何禁用三个通知消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58975997/
我是一名优秀的程序员,十分优秀!