Do not duplicate timer

This commit is contained in:
Daniel García Aubert 2020-06-11 10:12:27 +02:00
parent 649f8d701e
commit f6c8796c8a

View File

@ -16,10 +16,10 @@ module.exports = function profiler (options) {
profile: enabled profile: enabled
}); });
req.profiler.start(prefix); req.profiler.start([prefix, 'response'].join('.'));
res.on('finish', () => { res.on('finish', () => {
req.profiler.done('response'); req.profiler.end();
logger.info({ stats: req.profiler.toJSON() }); logger.info({ stats: req.profiler.toJSON() });
try { try {