Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 84d9b9d

Browse files
authored
Update codeql-learninglab-check/package/src/index.ts
1 parent b1a3bb4 commit 84d9b9d

File tree

1 file changed

+1
-2
lines changed
  • codeql-learninglab-check/package/src

1 file changed

+1
-2
lines changed

codeql-learninglab-check/package/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ function isConfig(config: any): config is Config {
278278
const exists = await access(query, fs.constants.R_OK).then(() => true, () => false);
279279
// Run the query if either it's changed, or runAll is true
280280
if (exists && (RUN_ALL || unableToGetChangedQueries || queriesChanged.has(query)) || (queryPattern && QUERY_PATTERN.test(query))) {
281-
console.log('query: ' + query + ' / RUN_ALL: ' + RUN_ALL + ' / unableToGetChangedQueries: ' + unableToGetChangedQueries + ' / regex test: ' + QUERY_PATTERN.test(query))
282281
queriesToRun.push(query);
283282
}
284283
}
@@ -366,4 +365,4 @@ function isConfig(config: any): config is Config {
366365
})().catch(err => {
367366
console.error(err);
368367
process.exit(1);
369-
});
368+
});

0 commit comments

Comments
 (0)