I want to follow this example: https://www.npmjs.com/package/pino-http#use-as-express-middleware but I also want to provide the `logger()` call with the request object. Something like this: ```js const logger = require('pino-http') const app = express() app.use((req) => logger(req)) ``` But it does not work (it crashes my server). Is it even possible?