Isolate One Request While Reproducing a Bug
logs & debug
// what it does
Narrows the firehose down to the exact requests you care about by combining filters, which AND together. `--method` and `--header` pin the request shape, `--search` matches log text, and `--ip self` limits the stream to traffic from your own IP so you can reproduce against live prod cleanly.
// shell
$ wrangler tail --status error --method POST --search "checkout"$ wrangler tail --ip self// gotcha
`--search` matches text inside `console.log`/logging output only — not the URL, headers, or response body. Pair it with `--method`/`--header` or `--ip self` to actually pin down the request.