export default async function logErrors (fastify) {
  fastify.post('/log', async (req, reply) => {
    req.log.info({ ...req.body, userAgent: req.headers['user-agent'] })
    reply.send()
  })
}