163c546236
- Logs to stdout, disabled while testing - Change log calls signature when needed - Use development version of camshaft - Removes unused log cofiguration - Bind request id to log req/res - Log req at the begining of the cycle and res at the end
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
'use strict';
|
|
|
|
const uuid = require('uuid');
|
|
|
|
module.exports = function logger () {
|
|
return function loggerMiddleware (req, res, next) {
|
|
const id = req.get('X-Request-Id') || uuid.v4();
|
|
res.locals.logger = global.logger.child({ id });
|
|
|
|
res.locals.logger.info(req);
|
|
res.on('finish', () => res.locals.logger.info(res));
|
|
|
|
next();
|
|
};
|
|
};
|