mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
37f9ed9570
Sessions will be required to solve admin-auth. I also refactored a few middlewares into seperate files to make the code easier to read. closes #262
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
'use strict';
|
|
|
|
const logger = require('../logger')('HTTP');
|
|
|
|
module.exports = function(config) {
|
|
return (req, res, next) => {
|
|
next();
|
|
if (config.enableRequestLogger) {
|
|
logger.info(`${res.statusCode} ${req.method} ${req.baseUrl}`);
|
|
}
|
|
};
|
|
};
|