如何启用此节点请求模块的详细日志?

如何为以下节点请求模块启用详细日志?

https://github.com/mikeal/request

var reqParam = { 'headers': { 'User-Agent': 'CLA' }, 'body': 'CSCCDDSADADDADADADAAAEE', 'strictSSL': true, 'jar': false, 'encoding': null, 'timeout': 300000 }; request.post(reqParam, function (err, res, body) { if (err) { console.log('Curl request received an error:' + err); } console.log(body); }; 

什么是启用HTTP VERBOSE日志为https://github.com/mikeal/request模块的选项?

你的意思是debugging?

 NODE_DEBUG=request node yourscript.js