We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebbf85 commit 71e5850Copy full SHA for 71e5850
.changeset/metal-lights-hide.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-better-t-stack": patch
3
4
+
5
+remove telemetry console logs
apps/cli/src/utils/telemetry.ts
@@ -8,9 +8,6 @@ export function isTelemetryEnabled(): boolean {
8
const BTS_TELEMETRY_DISABLED = process.env.BTS_TELEMETRY_DISABLED;
9
const BTS_TELEMETRY = process.env.BTS_TELEMETRY;
10
11
- console.log("BTS_TELEMETRY_DISABLED:", BTS_TELEMETRY_DISABLED);
12
- console.log("BTS_TELEMETRY:", BTS_TELEMETRY);
13
-
14
if (BTS_TELEMETRY_DISABLED !== undefined) {
15
return BTS_TELEMETRY_DISABLED !== "1";
16
}
0 commit comments