Set http logging to info to reduce debug noise

This commit is contained in:
Simon Engledew
2020-11-03 12:15:52 +00:00
parent 9a0139eee2
commit b88c216104
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ exports.getApiClient = function (githubAuth, githubUrl, allowLocalRun = false) {
return new retryingOctokit(githubUtils.getOctokitOptions(githubAuth, {
baseUrl: getApiUrl(githubUrl),
userAgent: "CodeQL Action",
log: console_log_level_1.default({ level: "debug" }),
log: console_log_level_1.default({ level: "info" }),
}));
};
function getApiUrl(githubUrl) {