diff --git a/index.js b/index.js index 87eb06e..897da24 100755 --- a/index.js +++ b/index.js @@ -128,7 +128,9 @@ async function send404(req, res) { const app = express(); app.use((req, res, next) => { - if (dev == "true") console.log(req); + if (dev == "true") { + console.log(`got a req to ${req.path}?${req.query} with a body of ${req.body}`); + } next(); });