We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d28340e commit 4f70a72Copy full SHA for 4f70a72
v-next/hardhat/src/internal/cli/telemetry/sentry/reporter.ts
@@ -82,7 +82,7 @@ class Reporter {
82
error: Error,
83
configPath: string = "",
84
): Promise<boolean> {
85
- if (!(await this.canSendTelemetry(error))) {
+ if (!(await this.shouldBeReported(error))) {
86
return false;
87
}
88
@@ -98,7 +98,7 @@ class Reporter {
98
return true;
99
100
101
- private async canSendTelemetry(error: Error): Promise<boolean> {
+ private async shouldBeReported(error: Error): Promise<boolean> {
102
if (!this.#telemetryEnabled) {
103
104
0 commit comments