Debugging Documentation?
Where can I gather logs within Cloudflare pages, to debug potential issues happening?
4 Replies
You can get live logs from
wrangler pages deployment tail
, but there's no historical logs right now
You'd have to ship them off to some external service yourself via a Function or similarWrangler?
wrangler is a CLI tool for working with the cloudflare dev platform: https://developers.cloudflare.com/workers/wrangler/install-and-update/
You can also watch the logs from a Pages deploy in the dashboard, but again only live logs
Thank you!