We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e00451 + b06d935 commit 8a4f283Copy full SHA for 8a4f283
extensions/ql-vscode/src/variant-analysis/variant-analysis-monitor.ts
@@ -1,4 +1,4 @@
1
-import { EventEmitter } from "vscode";
+import { env, EventEmitter } from "vscode";
2
import { getVariantAnalysis } from "./gh-api/gh-api-client";
3
4
import {
@@ -57,7 +57,11 @@ export class VariantAnalysisMonitor extends DisposableObject {
57
);
58
} catch (e) {
59
void showAndLogWarningMessage(
60
- `Error while monitoring variant analysis: ${getErrorMessage(e)}`,
+ `Error while monitoring variant analysis ${
61
+ variantAnalysis.query.name
62
+ } (${variantAnalysis.query.language}) [${new Date(
63
+ variantAnalysis.executionStartTime,
64
+ ).toLocaleString(env.language)}]: ${getErrorMessage(e)}`,
65
66
continue;
67
}
0 commit comments