Skip to content

Commit

Permalink
feat(telemetry): improve log clarity for telemetry data
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mateusz-daniluk-xtb authored Jun 12, 2024
1 parent 6244ac9 commit 8272b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bundler-plugin-core/src/plugins/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function telemetryPlugin({
async buildStart() {
if (await shouldSendTelemetry) {
logger.info(
"Sending error and performance telemetry data to Sentry. To disable telemetry, set `options.telemetry` to `false`."
"Sending telemetry data on issues and performance to Sentry. To disable telemetry, set options.telemetry to false."
);
sentryHub.startTransaction({ name: "Sentry Bundler Plugin execution" }).finish();
await safeFlushTelemetry(sentryClient);
Expand Down

0 comments on commit 8272b9d

Please sign in to comment.