diff options
| author | anj-s <[email protected]> | 2025-06-24 15:31:45 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-24 22:31:45 +0000 |
| commit | 418f67086b533b6a201cd888d3d2facee703dc13 (patch) | |
| tree | 9cb79a8a6466bf35f793e08df197c01d8f604723 | |
| parent | 13cff94b1a811f15bf8a14a8beb595c081c2b28c (diff) | |
Add the link to the privacy policy to the Usage Statistics section and remove debug logs (#1393)
| -rw-r--r-- | docs/cli/configuration.md | 3 | ||||
| -rw-r--r-- | packages/core/src/telemetry/clearcut-logger/clearcut-logger.ts | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index fe587e1c..90646b99 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -432,3 +432,6 @@ You can opt out of usage statistics collection at any time by setting the `usage "usageStatisticsEnabled": false } ``` + +**Privacy Policy:** +Data collected is subject to the [Google Privacy Policy](https://policies.google.com/privacy). diff --git a/packages/core/src/telemetry/clearcut-logger/clearcut-logger.ts b/packages/core/src/telemetry/clearcut-logger/clearcut-logger.ts index d88c12df..03e94ef7 100644 --- a/packages/core/src/telemetry/clearcut-logger/clearcut-logger.ts +++ b/packages/core/src/telemetry/clearcut-logger/clearcut-logger.ts @@ -98,9 +98,6 @@ export class ClearcutLogger { }, ]; const body = JSON.stringify(request); - if (this.config?.getDebugMode() ?? false) { - console.log('Clearcut POST request body:', body); - } const options = { hostname: 'play.googleapis.com', path: '/log', |
