You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue tracks the implementation of wrangler tail.
Usage
as before, you can run wrangler tail inside a project and it'll start showing live logs for the worker defined in that project.
additionally, you can pass a script name directly to it, like wrangler tail <name> and it'll tail the worker from your account with that name.
Consequently, you won't need to clone the worker's repo, install all dependencies, all just to tail the worker anymore. You should now be able to run npx wrangler tail <name> from anywhere.
in v2, we only log in the json format, and don't support all the filters yet. We will fix this soon to add pretty mode, and all the filter flags: --status, --header, --method, --sampling-rate, --search.
This issue tracks the implementation of
wrangler tail.Usage
wrangler tailinside a project and it'll start showing live logs for the worker defined in that project.wrangler tail <name>and it'll tail the worker from your account with that name.npx wrangler tail <name>from anywhere.--status,--header,--method,--sampling-rate,--search.