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

时间:2014-01-14 06:17:44

标签: node.js request

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

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);
  };

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

1 个答案:

答案 0 :(得分:32)

你的意思是调试吗?

NODE_DEBUG=request node yourscript.js