You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -406,6 +408,18 @@ export class QueryHistoryManager extends DisposableObject {
406
408
this.handleOpenQueryDirectory.bind(this)
407
409
)
408
410
);
411
+
this.push(
412
+
commandRunner(
413
+
'codeQLQueryHistory.showEvalLog',
414
+
this.handleShowEvalLog.bind(this)
415
+
)
416
+
);
417
+
this.push(
418
+
commandRunner(
419
+
'codeQLQueryHistory.showEvalLogSummary',
420
+
this.handleShowEvalLogSummary.bind(this)
421
+
)
422
+
);
409
423
this.push(
410
424
commandRunner(
411
425
'codeQLQueryHistory.cancel',
@@ -736,6 +750,46 @@ export class QueryHistoryManager extends DisposableObject {
736
750
}
737
751
}
738
752
}
753
+
754
+
privatewarnNoEvalLog(){
755
+
voidshowAndLogWarningMessage('No evaluator log is available for this run. Perhaps it failed before evaluation, or you are running with a version of CodeQL before '+CliVersionConstraint.CLI_VERSION_WITH_PER_QUERY_EVAL_LOG+'?');
0 commit comments