Skip to content

Commit 9bd852a

Browse files
committed
Add error message to logging.
1 parent 6f6c229 commit 9bd852a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extensions/ql-vscode/src/variant-analysis/variant-analysis-manager.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,9 @@ export class VariantAnalysisManager
634634
(e.code === "ETIMEDOUT" || e.code === "ECONNRESET")
635635
) {
636636
void extLogger.log(
637-
`Timeout while trying to download variant analysis with id: ${variantAnalysis.id}. Retrying...`,
637+
`Timeout while trying to download variant analysis with id: ${
638+
variantAnalysis.id
639+
}. Error: ${getErrorMessage(e)}. Retrying...`,
638640
);
639641
continue;
640642
}

0 commit comments

Comments
 (0)