把下面的代码放在app.js(一般是这个名字吧。。。)最前面就行了(是改的全局的,只放在一个js文件就可以)
(function() {
var date = new Date();
function now() {
date.setTime(Date.now());
var m = date.getMonth() + 1;
var d = date.getDate();
var hour = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
var milliseconds = date.getMilliseconds();
return '[' + ((m < 10) ? '0' + m : m) + '-' + ((d < 10) ? '0' + d : d) +
' ' + ((hour < 10) ? '0' + hour : hour) + ':' + ((minutes < 10) ? '0' + minutes : minutes) +
':' + ((seconds < 10) ? '0' + seconds : seconds) + '.' + ('00' + milliseconds).slice(-3) + '] ';
}
var log = console.log;
console.error = console.log = function() {
var prefix = '';
if (typeof(arguments[0]) == 'string') {
var first_parameter = arguments[0];
var other_parameters = Array.prototype.slice.call(arguments, 1);
log.apply(console, [prefix + now() + first_parameter].concat(other_parameters));
} else {
var args = Array.prototype.slice.call(arguments);
log.apply(console, [prefix + now()].concat(args));
}
}
})();