diff --git a/backend/server.js b/backend/server.js index 23e7299..f599228 100644 --- a/backend/server.js +++ b/backend/server.js @@ -12,6 +12,10 @@ app.use(bodyParser.json()); app.use(bodyParser.urlencoded({extended: true})); app.use(cookieParser()) +app.use((req, res, next) => { + console.log(`${req.ip} requested ${req.url}`) + next() +}) const frontendPath = {