Commit 77ce67db6e9fecb8788e73df1fd2781dedca3190
1 parent
e7725f72ec
Exists in
master
verbose on req
Showing 1 changed file with 3 additions and 1 deletions Side-by-side Diff
partner-datacell.js
... | ... | @@ -121,7 +121,9 @@ function topupRequest(task, retry) { |
121 | 121 | |
122 | 122 | function createServer() { |
123 | 123 | var httpServer = http.createServer(function(req, res) { |
124 | - console.log('Got request from partner: ' + req.url); | |
124 | + console.log('Got request from partner, url: ' + req.url); | |
125 | + console.log('REQ:'); | |
126 | + console.log(req); | |
125 | 127 | res.end('OK'); |
126 | 128 | }); |
127 | 129 |