__utm.gif是ga_debug.js在控制台中发送但没有输出

时间:2013-12-16 05:42:48

标签: google-analytics

我可以在网络标签中看到请求,响应为200.但由于某种原因,ga_debug.js没有向控制台输出任何内容(选择“全部”)。

其他人也遇到过这种行为吗?

1 个答案:

答案 0 :(得分:0)

有人禁用了生产日志。

console.debug = $.noop;
console.log = $.noop;
console.info = $.noop;
console.warn = $.noop;
console.error = function(){
   // throw new Error(JSON.stringify(arguments));
};

修正:

delete console.log

现在好了