Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/workers/observability/source-maps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ With **source maps uploaded**: all methods reference the correct files and line

## Related resources

* [Tail Workers](/workers/observability/logs/logpush/) - Learn how to attach Tail Workers to transform your logs and send them to HTTP endpoints.
* [Tail Workers](/workers/observability/logs/tail-workers/) - Learn how to attach Tail Workers to transform your logs and send them to HTTP endpoints.
* [Real-time logs](/workers/observability/logs/real-time-logs/) - Learn how to capture Workers logs in real-time.
* [RPC error handling](/workers/runtime-apis/rpc/error-handling/) - Learn how exceptions are handled over RPC (Remote Procedure Call).
6 changes: 3 additions & 3 deletions src/content/docs/workers/runtime-apis/console.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ The table below enumerates each method, and the extent to which it is supported
All methods noted as "✅ supported" have the following behavior:

* They will be written to the console in local dev (`npx wrangler@latest dev`)
* They will appear in live logs, when tailing logs in the dashboard or running [`wrangler tail`](https://developers.cloudflare.com/workers/observability/log-from-workers/#use-wrangler-tail)
* They will create entries in the `logs` field of [Tail Worker](https://developers.cloudflare.com/workers/observability/tail-workers/) events and [Workers Trace Events](https://developers.cloudflare.com/logs/logpush/logpush-job/datasets/account/workers_trace_events/), which can be pushed to a destination of your choice via [Logpush](https://developers.cloudflare.com/workers/observability/logpush/).
* They will appear in real-time logs when tailing logs in the dashboard or running [`wrangler tail`](/workers/observability/logs/real-time-logs/#view-logs-using-wrangler-tail)
* They will create entries in the `logs` field of [Tail Worker](/workers/observability/logs/tail-workers/) events and [Workers Trace Events](/logs/logpush/logpush-job/datasets/account/workers_trace_events/). You can use [Logpush](/workers/observability/logs/logpush/) to send Workers Trace Event Logs to a supported destination.

All methods noted as "🟡 partial support" have the following behavior:

* In both production and local development the method can be safely called, but will do nothing (no op)
* In the [Workers Playground](https://workers.cloudflare.com/playground), Quick Editor in the Workers dashboard, and remote preview mode (`wrangler dev --remote`) calling the method will behave as expected, print to the console, etc.

Refer to [Log from Workers](https://developers.cloudflare.com/workers/observability/log-from-workers/) for more on debugging and adding logs to Workers.
Refer to [Logs](/workers/observability/logs/) for more information about debugging and adding logs to Workers.

| Method | Behavior |
| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
Expand Down