We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a150643 commit a04f70eCopy full SHA for a04f70e
1 file changed
extensions/ql-vscode/src/databases/github-database-module.ts
@@ -19,11 +19,12 @@ export class GithubDatabaseModule extends DisposableObject {
19
20
private async initialize(): Promise<void> {
21
void this.promptGitHubRepositoryDownload().catch((e: unknown) => {
22
- this.app.telemetry?.sendError(
23
- redactableError(
24
- asError(e),
25
- )`Failed to prompt for GitHub repository download`,
26
- );
+ const error = redactableError(
+ asError(e),
+ )`Failed to prompt for GitHub repository download`;
+
+ void this.app.logger.log(error.fullMessageWithStack);
27
+ this.app.telemetry?.sendError(error);
28
});
29
}
30
0 commit comments