Skip to content

Commit

Permalink
fix: refine local debug prerequisite check error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jayzhang committed Oct 10, 2024
1 parent 4df3d65 commit f15f37d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/cli/src/commonlib/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export class CliTelemetryReporter implements TelemetryReporter {
this.reporter.sendTelemetryErrorEvent(eventName, properties, measurements, errorProps);

void logger.debug(
`sendTelemetryErrorEvent ===> ${eventName}, properties: ${JSON.stringify(properties)}`
`sendTelemetryErrorEvent ===> ${eventName}, properties: ${JSON.stringify(
properties
)}, measurements: ${JSON.stringify(measurements)}`
);
}

Expand All @@ -89,7 +91,9 @@ export class CliTelemetryReporter implements TelemetryReporter {
this.reporter.sendTelemetryEvent(eventName, properties, measurements);

void logger.debug(
`sendTelemetryEvent ===> ${eventName}, properties: ${JSON.stringify(properties)}`
`sendTelemetryEvent ===> ${eventName}, properties: ${JSON.stringify(
properties
)}, measurements: ${JSON.stringify(measurements)}`
);
}

Expand Down

0 comments on commit f15f37d

Please sign in to comment.