diff --git a/src/shared/posthog.ts b/src/shared/posthog.ts index bcda54588..6e96853d0 100644 --- a/src/shared/posthog.ts +++ b/src/shared/posthog.ts @@ -155,7 +155,7 @@ export function getPostHogDistinctId(): string { export function createCliPostHog(): PostHogClient { return createPostHogClient("cli", { - enableExceptionAutocapture: true, + enableExceptionAutocapture: false, flushAt: 1, flushInterval: 0, }) @@ -163,7 +163,7 @@ export function createCliPostHog(): PostHogClient { export function createPluginPostHog(): PostHogClient { return createPostHogClient("plugin", { - enableExceptionAutocapture: true, + enableExceptionAutocapture: false, flushAt: 1, flushInterval: 0, })