fix(cli): remove telemetry console logs

This commit is contained in:
Aman Varshney
2025-07-13 20:44:09 +05:30
parent cebbf859c8
commit 71e5850402
2 changed files with 5 additions and 3 deletions

View File

@@ -8,9 +8,6 @@ export function isTelemetryEnabled(): boolean {
const BTS_TELEMETRY_DISABLED = process.env.BTS_TELEMETRY_DISABLED;
const BTS_TELEMETRY = process.env.BTS_TELEMETRY;
console.log("BTS_TELEMETRY_DISABLED:", BTS_TELEMETRY_DISABLED);
console.log("BTS_TELEMETRY:", BTS_TELEMETRY);
if (BTS_TELEMETRY_DISABLED !== undefined) {
return BTS_TELEMETRY_DISABLED !== "1";
}