summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/lib/debug.js
blob: fa27b24b65327fed5205e8bb79647d61c8deee6b (plain)
1
2
3
4
5
6
7
var util = require('util')

module.exports =
function debug () {
  if (/\brequest\b/.test(process.env.NODE_DEBUG))
    console.error('REQUEST %s', util.format.apply(util, arguments))
}