控制台.log检测
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控制台.log检测相关的知识,希望对你有一定的参考价值。
Basically creates a log function on the window object and uses console.log or alert depending on which is supported. Very basic and simple but definitely useful.
window.log = function(){ var output = Array.prototype.slice.call(arguments); window.console ? console.log(output) : alert(output); }
以上是关于控制台.log检测的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情