Commit 8f090c597bd6ce41db27517edff35e9697b5c266

Authored by Adhidarma Hadiwinoto
1 parent 371c46cde1
Exists in master

req.path

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

lib/apiserver/index.js
... ... @@ -88,7 +88,7 @@ async function pageHistory(req, res) {
88 88 }
89 89  
90 90 app.use(function(req, res, next) {
91   - logger.verbose('APISERVER: Incoming http request', { ip: req.ip, url: req.url });
  91 + logger.verbose('APISERVER: Incoming http request', { ip: req.ip, path: req.path, url: req.url });
92 92 next();
93 93 })
94 94