I'm currently using `prisma.$on('query', event =&g...
# prisma-client
b
I'm currently using
prisma.$on('query', event => {});
to log queries, but I'd like to be able to associate these queries with a particular HTTP request In the rest of my codebase, I have a unique "request ID" that I can pass around, so that any logs from the same request can be associated with each other Is there a way for me to achieve this with regards to logging what Prisma is doing please?
o
Maybe we can improve it to pass some context too.