Skip to content

Commit 4216eeb

Browse files
committed
pr feedback 2
1 parent 2e32bb6 commit 4216eeb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/content/docs/workers/wrangler/commands.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Wrangler offers a number of commands to manage your Cloudflare Workers.
4141
- [`dispatch-namespace`](#dispatch-namespace) - Interact with a [dispatch namespace](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#dispatch-namespace).
4242
- [`mtls-certificate`](#mtls-certificate) - Manage certificates used for mTLS connections.
4343
- [`types`](#types) - Generate types from bindings and module rules in configuration.
44-
- [`telemetry`](#telemetry) - Configure whether Wrangler can collect anonymous usage telemetry
44+
- [`telemetry`](#telemetry) - Configure whether Wrangler can collect anonymous usage data.
4545

4646
:::note
4747

@@ -2593,7 +2593,7 @@ The minimum required Wrangler version to use this command is 3.66.0.
25932593

25942594
Cloudflare collects anonymous usage data to improve Wrangler. You can learn more about this in our [data policy](https://github.com/cloudflare/workers-sdk/tree/main/packages/wrangler/telemetry.md).
25952595

2596-
You can opt-out of sharing telemetry data at any time using these commands.
2596+
You can manage sharing of usage data at any time using these commands.
25972597

25982598
### `disable`
25992599

@@ -2613,7 +2613,7 @@ wrangler telemetry enable
26132613

26142614
### `status`
26152615

2616-
Check whether telemetry collection is currently enabled.
2616+
Check whether telemetry collection is currently enabled. This will resolve the global status set by `wrangler telemetry disable / enable`, the environment variable [`WRANGLER_SEND_METRICS`](/workers/wrangler/system-environment-variables/#supported-environment-variables) and the [`send_metrics`](/workers/wrangler/configuration/#top-level-only-keys) key in `wrangler.toml`.
26172617

26182618
```txt
26192619
wrangler telemetry status

src/content/docs/workers/wrangler/system-environment-variables.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Wrangler supports the following environment variables:
4040

4141
* `WRANGLER_SEND_METRICS` <Type text="string" /> <MetaInfo text="optional" />
4242

43-
* Options for this are `true` and `false`, the default behavior is `true`. Controls whether Wrangler can send anonymous usage metrics to Cloudflare for this project. You can learn more about this in our [data policy](https://github.com/cloudflare/workers-sdk/tree/main/packages/wrangler/telemetry.md).
43+
* Options for this are `true` and `false`. Defaults to `true`. Controls whether Wrangler can send anonymous usage data to Cloudflare for this project. You can learn more about this in our [data policy](https://github.com/cloudflare/workers-sdk/tree/main/packages/wrangler/telemetry.md).
4444

4545
* `WRANGLER_HYPERDRIVE_LOCAL_CONNECTION_STRING_<BINDING_NAME>`<Type text="string" /> <MetaInfo text="optional" />
4646

@@ -52,7 +52,7 @@ Wrangler supports the following environment variables:
5252

5353
* `WRANGLER_LOG` <Type text="string" /> <MetaInfo text="optional" />
5454

55-
* Options for Logging levels are `"none"`, `"error"`, `"warn"`, `"info"`, `"log"` and `"debug"`. Levels are case-insensitive and default to `"log"`. If an invalid level is specified, Wrangler will fallback to the default.
55+
* Options for Logging levels are `"none"`, `"error"`, `"warn"`, `"info"`, `"log"` and `"debug"`. Levels are case-insensitive and default to `"log"`. If an invalid level is specified, Wrangler will fallback to the default. Logs can include requests to Cloudflare's API, any usage data being collected, and more verbose error logs.
5656

5757
* `FORCE_COLOR` <Type text="string" /> <MetaInfo text="optional" />
5858

0 commit comments

Comments
 (0)