使用 iPhone 5.0 模拟器的 UI 自动化调试消息
对于 5.0 模拟器,每次点击和滚动都会在输出日志中生成调试消息。示例:
Debug
11/14/11 4:00:10 PM GMT+02:00
target.frontMostApp().mainWindow().navigationBar().rightButton().tap()
使用 4.3 模拟器一切正常。如何关闭 5.0 模拟器中的调试消息垃圾邮件?
With 5.0 simulator every tap and scroll results in debug message in output log. Example:
Debug
11/14/11 4:00:10 PM GMT+02:00
target.frontMostApp().mainWindow().navigationBar().rightButton().tap()
With 4.3 simulator everything's OK. How to turn off debug messages spam in 5.0 simulator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
defaults write com.apple.Instruments3 UIAVerboseLogging -int 4096
进行重置:
defaults delete com.apple.Instruments3 UIAVerboseLogging
在任一更改后,您需要重新启动 Instruments 才能看到效果。
defaults write com.apple.Instruments3 UIAVerboseLogging -int 4096
to reset:
defaults delete com.apple.Instruments3 UIAVerboseLogging
You will need to restart Instruments after either change to see an effect.