We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc88a6e commit ae27cfdCopy full SHA for ae27cfd
src/extension.ts
@@ -138,7 +138,11 @@ export async function activate(context: ExtensionContext) {
138
}
139
140
function activateErrorReporting(): void {
141
- if (Container.isDebugging || Container.featureFlagClient.checkGate(Features.EnableErrorTelemetry)) {
+ if (
142
+ Container.isDebugging ||
143
+ RovodevStaticConfig.isBBY ||
144
+ Container.featureFlagClient.checkGate(Features.EnableErrorTelemetry)
145
+ ) {
146
registerAnalyticsClient(Container.analyticsClient);
147
} else {
148
unregisterErrorReporting();
0 commit comments