Add the link to the privacy policy to the Usage Statistics section and remove debug logs (#1393)
This commit is contained in:
parent
13cff94b1a
commit
418f67086b
|
@ -432,3 +432,6 @@ You can opt out of usage statistics collection at any time by setting the `usage
|
||||||
"usageStatisticsEnabled": false
|
"usageStatisticsEnabled": false
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Privacy Policy:**
|
||||||
|
Data collected is subject to the [Google Privacy Policy](https://policies.google.com/privacy).
|
||||||
|
|
|
@ -98,9 +98,6 @@ export class ClearcutLogger {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const body = JSON.stringify(request);
|
const body = JSON.stringify(request);
|
||||||
if (this.config?.getDebugMode() ?? false) {
|
|
||||||
console.log('Clearcut POST request body:', body);
|
|
||||||
}
|
|
||||||
const options = {
|
const options = {
|
||||||
hostname: 'play.googleapis.com',
|
hostname: 'play.googleapis.com',
|
||||||
path: '/log',
|
path: '/log',
|
||||||
|
|
Loading…
Reference in New Issue