Best place for viewing production logs? Moving from Vercel

I'm in the process of moving from Vercel to Pages, and I'm looking for the best way to replicate Vercel's Logs page (picture attached). I see that in CF in Deployment details > Functions, I can stream from one of the deployments and click in to see logs (and I can use Wrangler CLI to filter more closely). Am I correct that this is the closest to the Vercel Logs page?

Also, I notice that when I send back a 400 via nextjs, the CF logs (both in the dash and via wrangler) say OK. Browser correctly shows the 400 as an error.
{
  "outcome": "ok",
  "event": {
    ...
    "response": {
      "status": 400
    }
  }
}
Was this page helpful?