diff --git a/lib/apiserver/index.js b/lib/apiserver/index.js
index 5f50260..68e448c 100644
--- a/lib/apiserver/index.js
+++ b/lib/apiserver/index.js
@@ -88,7 +88,7 @@ async function pageHistory(req, res) {
 }
 
 app.use(function(req, res, next) {
-    logger.verbose('APISERVER: Incoming http request', { ip: req.ip, url: req.url });
+    logger.verbose('APISERVER: Incoming http request', { ip: req.ip, path: req.path, url: req.url });
     next();
 })