This commit is contained in:
Jonathan Barrow
2021-04-21 15:06:25 -04:00
5 changed files with 67 additions and 39 deletions

View File

@@ -13,7 +13,7 @@ const routers = {
};
app.use('*', (req, res, next) => {
logger.info(`${req.method.toUpperCase()} ${req.path}`);
logger.info(`${req.method.toUpperCase()} ${req.originalUrl}`);
next();
});