Skip to content

Commit 71e5850

Browse files
fix(cli): remove telemetry console logs
1 parent cebbf85 commit 71e5850

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.changeset/metal-lights-hide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-better-t-stack": patch
3+
---
4+
5+
remove telemetry console logs

apps/cli/src/utils/telemetry.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ export function isTelemetryEnabled(): boolean {
88
const BTS_TELEMETRY_DISABLED = process.env.BTS_TELEMETRY_DISABLED;
99
const BTS_TELEMETRY = process.env.BTS_TELEMETRY;
1010

11-
console.log("BTS_TELEMETRY_DISABLED:", BTS_TELEMETRY_DISABLED);
12-
console.log("BTS_TELEMETRY:", BTS_TELEMETRY);
13-
1411
if (BTS_TELEMETRY_DISABLED !== undefined) {
1512
return BTS_TELEMETRY_DISABLED !== "1";
1613
}

0 commit comments

Comments
 (0)