Skip to content

Commit ae27cfd

Browse files
authored
[AXON-1902] Enable error telemetry in Boysenberry (#1611)
1 parent dc88a6e commit ae27cfd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/extension.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ export async function activate(context: ExtensionContext) {
138138
}
139139

140140
function activateErrorReporting(): void {
141-
if (Container.isDebugging || Container.featureFlagClient.checkGate(Features.EnableErrorTelemetry)) {
141+
if (
142+
Container.isDebugging ||
143+
RovodevStaticConfig.isBBY ||
144+
Container.featureFlagClient.checkGate(Features.EnableErrorTelemetry)
145+
) {
142146
registerAnalyticsClient(Container.analyticsClient);
143147
} else {
144148
unregisterErrorReporting();

0 commit comments

Comments
 (0)