File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
33## [ UNRELEASED]
44
5+ - Prints end-of-query evaluator log summaries to the Query Log. [ #1349 ] ( https://github.com/github/vscode-codeql/pull/1349 )
6+
57## 1.6.6 - 17 May 2022
68
79No user facing changes.
Original file line number Diff line number Diff line change @@ -206,8 +206,8 @@ export class QueryEvaluationInfo {
206206 if ( err ) {
207207 throw new Error ( `Could not read structured evaluator log end of summary file at ${ this . evalLogEndSummaryPath } .` ) ;
208208 }
209- void qs . logger . log ( ' --- Evaluator Log Summary --- ' ) ;
210- void qs . logger . log ( buffer . toString ( ) ) ;
209+ void qs . logger . log ( ' --- Evaluator Log Summary --- ' , { additionalLogLocation : this . logPath } ) ;
210+ void qs . logger . log ( buffer . toString ( ) , { additionalLogLocation : this . logPath } ) ;
211211 } ) ;
212212 } )
213213
You can’t perform that action at this time.
0 commit comments