app.get('/logging-tutorial/async-hook', function(req, res) {
// We have installed a uuid module to produce unique ids
const store = LocalStorage.enterWith({id: uuid()});
logger.info('I am the first log');
logger.info('I am the second log');
logger.info('I am the third log');
return res.json({});
})