File tree 1 file changed +4
-3
lines changed
v-next/hardhat/src/internal/cli/telemetry/sentry
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,10 @@ export function _testResetReporter(): void {
25
25
}
26
26
27
27
class Reporter {
28
- // GENERAL EXPLANATION: The 'reportError' function collects the error and passes it to our custom Sentry transporter.
29
- // The transporter receives the JavaScript error serialized by Sentry.
30
- // This serialized error is then passed to a detached subprocess, which anonymizes all the information before sending it to Sentry.
28
+ // GENERAL EXPLANATION:
29
+ // 1) The 'reportError' function collects the error and passes it to our custom Sentry transporter.
30
+ // 2) The custom transporter receives the JavaScript error serialized by Sentry.
31
+ // 3) This serialized error is then passed to a detached subprocess, which anonymizes all the information before sending it to Sentry.
31
32
32
33
static #instance: Reporter | undefined ;
33
34
readonly #telemetryEnabled: boolean ;
You can’t perform that action at this time.
0 commit comments