我尝试使用重叠来控制日志,但我收到了错误。我删除JSON.stringify(arguments[0])
时代码工作正常,但我需要它以JSON格式。
app.use(function(req, res, next) {
var t_log= console.log;
console.log = function(){
arguments[0] = JSON.stringify(arguments[0])+" sessionID " + req.sessionID + " requestID=" + req.id +" timestamp"+ new Date();
t_log.apply(console, arguments);
}
console.log("call");
next();
});
答案 0 :(得分:-1)
将通用对象转换为true JSON:
JSON.parse(JSON.stringify(my_generic_object))