Skip to content

Commit 8272b9d

Browse files
feat(telemetry): improve log clarity for telemetry data
Updated the log message in the telemetry plugin to avoid using the word "error," reducing false positives when searching logs. This change improves developer experience during debugging.
1 parent 6244ac9 commit 8272b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bundler-plugin-core/src/plugins/telemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function telemetryPlugin({
2121
async buildStart() {
2222
if (await shouldSendTelemetry) {
2323
logger.info(
24-
"Sending error and performance telemetry data to Sentry. To disable telemetry, set `options.telemetry` to `false`."
24+
"Sending telemetry data on issues and performance to Sentry. To disable telemetry, set options.telemetry to false."
2525
);
2626
sentryHub.startTransaction({ name: "Sentry Bundler Plugin execution" }).finish();
2727
await safeFlushTelemetry(sentryClient);

0 commit comments

Comments
 (0)