diff --git a/products/workers/src/content/learning/debugging-workers.md b/products/workers/src/content/learning/debugging-workers.md
index b018ba2b88e..aca6642c94a 100644
--- a/products/workers/src/content/learning/debugging-workers.md
+++ b/products/workers/src/content/learning/debugging-workers.md
@@ -61,123 +61,3 @@ There is a bug associated with `wrangler dev` documented in the [Known issues se
---------------------------------
-
-## Accessing production logs with `wrangler tail`
-
-With your Workers application deployed, you may want to inspect incoming traffic. This can be useful for situations where a user is running into issues or errors that you can’t reproduce. `wrangler tail` allows developers to “tail” their Workers application’s logs, giving you real-time access to information about incoming requests.
-
-To get started, run `wrangler tail` in your Workers project directory. This will log any incoming requests to your application available in your local terminal.
-
-The output of each `wrangler tail` log is a structured JSON object:
-
-```json
-{
- "outcome": "ok",
- "scriptName": null,
- "exceptions": [],
- "logs": [],
- "eventTimestamp": 1590680082349,
- "event": {
- "request": {
- "url": "https://www.bytesized.xyz/",
- "method": "GET",
- "headers": {},
- "cf": {}
- }
- }
-}
-```
-
-By piping the output to tools like [`jq`](https://stedolan.github.io/jq/), you can query and manipulate the requests to look for specific information:
-
-```sh
-$ wrangler tail | jq .event.request.url
-"https://www.bytesized.xyz/"
-"https://www.bytesized.xyz/component---src-pages-index-js-a77e385e3bde5b78dbf6.js"
-"https://www.bytesized.xyz/page-data/app-data.json"
-```
-
-You can customize how `wrangler tail` works to fit your needs: see [the docs](/cli-wrangler/commands#tail) for available configuration options.
-
---------------------------------
-
-## Identifying and handling errors and exceptions
-
-### Error pages generated by Workers
-
-When a Worker running in production has an error that prevents it from returning a response, the client will receive an error page with an error code, defined as follows:
-
-
-
-| Error code | Meaning |
-| ---------- | ---------------------------------------------------------------------------------------------------------|
-| 1101 | Worker threw a JavaScript exception. |
-| 1102 | Worker exceeded [CPU time limit](/platform/limits). |
-| 1015 | Your client IP is being rate limited. |
-| 1027 | Worker exceeded free tier [daily request limit](/platform/limits#daily-request). |
-| 1042 | Worker tried to fetch from another Worker on the same zone, which is [unsupported](/runtime-apis/fetch). |
-
-
-
-Other 11xx errors generally indicate a problem with the Workers runtime itself — please check our [status page](https://www.cloudflarestatus.com) if you see one.
-
-### Identifying error: Workers Metrics
-
-Additionally, you can find out whether your application is experiencing any downtime, or returning any errors by navigating to Workers Metrics in the dashboard.
-
-
-
-### Debugging exceptions
-
-Once you’ve identified your Workers application is returning exceptions, you can use `wrangler tail` to inspect, and fix the exceptions.
-
-
-
-Exceptions will show up under the `exceptions` field in the JSON returned by `wrangler tail`. Once you’ve identified the exception that is causing errors, you may redeploy your code with a fix, and continue trailing the logs to confirm that it is indeed fixed.
-
-### Setup a logging service
-
-A Worker can make HTTP requests to any HTTP service on the public internet. You can use a service like [Sentry](https://sentry.io) to collect error logs from your Worker, by making an HTTP request to the service to report the error. Refer to your service’s API documentation for details on what kind of request to make.
-
-When logging using this strategy, remember that outstanding asynchronous tasks are canceled as soon as a Worker finishes sending its main response body to the client. To ensure that a logging subrequest completes, you can pass the request promise to [`event.waitUntil()`](https://developer.mozilla.org/en-US/docs/Web/API/ExtendableEvent/waitUntil). For example:
-
-```js
-addEventListener("fetch", event => {
- event.respondWith(handleEvent(event))
-})
-
-async function handleEvent(event) {
- // ...
-
- // Without event.waitUntil(), our fetch() to our logging service may
- // or may not complete.
- event.waitUntil(postLog(stack))
- return fetch(event.request)
-}
-
-function postLog(data) {
- return fetch("https://log-service.example.com/", {
- method: "POST",
- body: data,
- })
-}
-```
-
-### Go to Origin on Error
-
-By using `event.passThroughOnException`, your Workers application will pass requests to your origin if it throws an exception. This allows you to add logging, tracking, or other features with Workers, without degrading your website’s functionality.
-
-```js
-addEventListener("fetch", event => {
- event.passThroughOnException()
-
- event.respondWith(handleRequest(event.request))
-})
-
-async function handleRequest(request) {
- // An error here will return the origin response, as if the Worker wasn’t present.
- // ...
- return fetch(request)
-}
-```
diff --git a/products/workers/src/content/learning/how-kv-works.md b/products/workers/src/content/learning/how-kv-works.md
index ec471335671..249cc7ddcc8 100644
--- a/products/workers/src/content/learning/how-kv-works.md
+++ b/products/workers/src/content/learning/how-kv-works.md
@@ -1,5 +1,5 @@
---
-order: 5
+order: 6
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/how-the-cache-works.md b/products/workers/src/content/learning/how-the-cache-works.md
index 2572280e702..f82e4630e46 100644
--- a/products/workers/src/content/learning/how-the-cache-works.md
+++ b/products/workers/src/content/learning/how-the-cache-works.md
@@ -1,5 +1,5 @@
---
-order: 6
+order: 7
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/how-workers-works.md b/products/workers/src/content/learning/how-workers-works.md
index b575209af55..8d25ccb2f76 100644
--- a/products/workers/src/content/learning/how-workers-works.md
+++ b/products/workers/src/content/learning/how-workers-works.md
@@ -1,5 +1,5 @@
---
-order: 4
+order: 5
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/integrations.md b/products/workers/src/content/learning/integrations.md
index 3696ef11ab7..5b7129a241b 100644
--- a/products/workers/src/content/learning/integrations.md
+++ b/products/workers/src/content/learning/integrations.md
@@ -1,5 +1,5 @@
---
-order: 12
+order: 13
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/logging-workers.md b/products/workers/src/content/learning/logging-workers.md
new file mode 100644
index 00000000000..de118d62d57
--- /dev/null
+++ b/products/workers/src/content/learning/logging-workers.md
@@ -0,0 +1,175 @@
+---
+order: 4
+pcx-content-type: concept
+---
+
+# Logging from Workers
+
+You can access logs and exceptions for your Workers using the dashboard or [`wrangler tail`](/cli-wrangler/commands#tail).
+
+The Workers platform captures all `console.log`'s and uncaught exceptions, in addition to information about the event itself. All of this can be viewed with either `wrangler tail` or on the dashboard through your **Account Home** > **Workers** > your **Workers script** > **Logs**.
+
+## Adding custom logs
+
+Any `console.log` statements within your Worker will appear within `wrangler tail` and the dashboard output. The following example demonstrates a custom `console.log` within a Worker request handler.
+
+```js
+addEventListener('fetch', event => {
+ event.respondWith(handleRequest(event.request))
+})
+
+/**
+ * Respond with hello worker text
+ * @param {Request} request
+ */
+async function handleRequest(request) {
+ const { cf } = request
+ const { city, country } = cf
+
+ console.log(`Request came from city: ${city} in country: ${country}`);
+
+ return new Response('Hello worker!', {
+ headers: { 'content-type': 'text/plain' },
+ })
+}
+```
+
+After you deploy the above code, run `wrangler tail` in your terminal, and then access your Worker. Your terminal will display:
+
+```sh
+☁ logging-example [master] ⚡ wrangler tail --format=pretty
+[2021-08-18 17:06:55] [LAX] [Ok] GET https://logging-example.jkup.workers.dev/
+ | [Info] Request came from city: Pacifica in country: US
+[2021-08-18 17:06:56] [LAX] [Ok] GET https://logging-example.jkup.workers.dev/favicon.ico
+ | [Info] Request came from city: Pacifica in country: US
+```
+
+## View logs using `wrangler tail`
+
+With your Workers application deployed, you may want to inspect incoming traffic. This may be useful in situations where a user is running into production issues that they cannot easily reproduce. In these instances, `wrangler tail` allows developers to “tail” their Workers application’s logs, giving real-time insight into their application's incoming requests.
+
+To get started, run `wrangler tail` in your Workers project directory. This will log any incoming requests to your application available in your local terminal.
+
+The output of each `wrangler tail` log is a structured JSON object:
+
+```json
+{
+ "outcome": "ok",
+ "scriptName": null,
+ "exceptions": [],
+ "logs": [],
+ "eventTimestamp": 1590680082349,
+ "event": {
+ "request": {
+ "url": "https://www.bytesized.xyz/",
+ "method": "GET",
+ "headers": {},
+ "cf": {}
+ }
+ }
+}
+```
+
+By piping the output to tools like [`jq`](https://stedolan.github.io/jq/), you can query and manipulate the requests to look for specific information:
+
+```sh
+$ wrangler tail | jq .event.request.url
+"https://www.bytesized.xyz/"
+"https://www.bytesized.xyz/component---src-pages-index-js-a77e385e3bde5b78dbf6.js"
+"https://www.bytesized.xyz/page-data/app-data.json"
+```
+
+You can customize how `wrangler tail` works to fit your needs: refer to [the `wrangler tail` documentation](/cli-wrangler/commands#tail) for available configuration options.
+
+## View logs from the dashboard
+
+You can review the production logs associated with any Worker by [logging into the Cloudflare dashboard](https://dash.cloudflare.com?to=/:account/workers/overview). From your **Account Home** > go to *Workers** > select your **Worker script** > and select **Logs**. Logging is available for all customers, including those on the free plan.
+
+
+
+A few things worth mentioning:
+
+- Workers logs are not stored. You can start and stop the stream at any time to view them, but they do not persist.
+- Logs will not display if the Worker's requests per second are over 200 for the last 5 minutes.
+- Logs from any [Durable Objects](/learning/using-durable-objects) your Worker is using will show up in the dashboard.
+- A maximum of 10 clients can view a Worker's logs at one time. This can be a combination of either dashboard sessions or `wrangler tail` calls.
+
+--------------------------------
+
+## Identifying and handling errors and exceptions
+
+### Error pages generated by Workers
+
+When a Worker running in production has an error that prevents it from returning a response, the client will receive an error page with an error code, defined as follows:
+
+
+
+| Error code | Meaning |
+| ---------- | ---------------------------------------------------------------------------------------------------------|
+| 1101 | Worker threw a JavaScript exception. |
+| 1102 | Worker exceeded [CPU time limit](/platform/limits). |
+| 1015 | Your client IP is being rate limited. |
+| 1027 | Worker exceeded free tier [daily request limit](/platform/limits#daily-request). |
+| 1042 | Worker tried to fetch from another Worker on the same zone, which is [unsupported](/runtime-apis/fetch). |
+
+
+
+Other `11xx` errors generally indicate a problem with the Workers runtime itself. Refer to the [status page](https://www.cloudflarestatus.com) if you are experiencing an error.
+
+### Identifying errors: Workers Metrics
+
+You can find out whether your application is experiencing any downtime, or returning any errors by navigating from **Account Home** > to **Workers** > your **Worker script** > **Metrics** in the dashboard.
+
+
+
+### Debugging exceptions
+
+After you have identified your Workers application is returning exceptions, use `wrangler tail` to inspect and fix the exceptions.
+
+
+
+Exceptions will show up under the `exceptions` field in the JSON returned by `wrangler tail`. After you have identified the exception that is causing errors, redeploy your code with a fix, and continue tailing the logs to confirm that it is fixed.
+
+### Set up a logging service
+
+A Worker can make HTTP requests to any HTTP service on the public Internet. You can use a service like [Sentry](https://sentry.io) to collect error logs from your Worker, by making an HTTP request to the service to report the error. Refer to your service’s API documentation for details on what kind of request to make.
+
+When using an external logging strategy, remember that outstanding asynchronous tasks are canceled as soon as a Worker finishes sending its main response body to the client. To ensure that a logging subrequest completes, pass the request promise to [`event.waitUntil()`](https://developer.mozilla.org/en-US/docs/Web/API/ExtendableEvent/waitUntil). For example:
+
+```js
+addEventListener("fetch", event => {
+ event.respondWith(handleEvent(event))
+})
+
+async function handleEvent(event) {
+ // ...
+
+ // Without event.waitUntil(), the `postLog` function may or may not complete.
+ event.waitUntil(postLog(stack))
+ return fetch(event.request)
+}
+
+function postLog(data) {
+ return fetch("https://log-service.example.com/", {
+ method: "POST",
+ body: data,
+ })
+}
+```
+
+### Go to origin on error
+
+By using [`event.passThroughOnException`](/runtime-apis/fetch-event#methods), a Workers application will forward requests to your origin if an exception is thrown during the Worker's execution. This allows you to add logging, tracking, or other features with Workers, without degrading your application's functionality.
+
+```js
+addEventListener("fetch", event => {
+ event.passThroughOnException()
+ event.respondWith(handleRequest(event.request))
+})
+
+async function handleRequest(request) {
+ // An error here will return the origin response, as if the Worker wasn’t present.
+ // ...
+ return fetch(request)
+}
+```
diff --git a/products/workers/src/content/learning/media/workers-logging-dashboard.png b/products/workers/src/content/learning/media/workers-logging-dashboard.png
new file mode 100644
index 00000000000..152b15c1024
Binary files /dev/null and b/products/workers/src/content/learning/media/workers-logging-dashboard.png differ
diff --git a/products/workers/src/content/learning/metrics-and-analytics.md b/products/workers/src/content/learning/metrics-and-analytics.md
index b8729621ce0..938459b2aec 100644
--- a/products/workers/src/content/learning/metrics-and-analytics.md
+++ b/products/workers/src/content/learning/metrics-and-analytics.md
@@ -1,5 +1,5 @@
---
-order: 11
+order: 12
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/security-model/index.md b/products/workers/src/content/learning/security-model/index.md
index f81768dde03..279d3db0825 100644
--- a/products/workers/src/content/learning/security-model/index.md
+++ b/products/workers/src/content/learning/security-model/index.md
@@ -1,5 +1,5 @@
---
-order: 10
+order: 11
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/using-durable-objects.md b/products/workers/src/content/learning/using-durable-objects.md
index 5912494bb10..5b1d63ccd69 100644
--- a/products/workers/src/content/learning/using-durable-objects.md
+++ b/products/workers/src/content/learning/using-durable-objects.md
@@ -1,5 +1,5 @@
---
-order: 8
+order: 9
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/using-streams.md b/products/workers/src/content/learning/using-streams.md
index a13c0f3930a..53a403b4f22 100644
--- a/products/workers/src/content/learning/using-streams.md
+++ b/products/workers/src/content/learning/using-streams.md
@@ -1,5 +1,5 @@
---
-order: 7
+order: 8
pcx-content-type: concept
---
diff --git a/products/workers/src/content/learning/using-websockets.md b/products/workers/src/content/learning/using-websockets.md
index d688cee48c9..ec1f0bc0b1f 100644
--- a/products/workers/src/content/learning/using-websockets.md
+++ b/products/workers/src/content/learning/using-websockets.md
@@ -1,5 +1,5 @@
---
-order: 9
+order: 10
pcx-content-type: concept
---