blob: bc7012e139aff5a431ea80dbe2a5359134f874b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const moment = require('moment');
const logger = (req, res, next) => {
console.log(
`${req.protocol}://${req.get('host')}${
req.originalUrl
}: ${moment().format()}`
);
next();
};
module.exports = logger;
|