Skip to content

Commit cc55e77

Browse files
committed
Disable sentry logging for update failures
Lots of unnecessary noise here, both from irrelevant connection/fs issues and from Oclif bugs that we can't easily update to fix. No real value in hearing the reports imo. We do keep tracking actual HTTP failure responses - useful for any real issues that might appear in the deployment process or similar here.
1 parent baef2bb commit cc55e77

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,7 @@ export async function runHTK(options: {
271271
}
272272
}
273273

274-
console.log(error.message);
275-
logError(`Failed to check for updates: ${error.message}`, { cause: error });
274+
console.error(`Failed to check for updates: ${error.message}`, { cause: error });
276275
})
277276
);
278277
});

0 commit comments

Comments
 (0)