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
@@ -20,7 +20,7 @@ export const getApiClient = function (
githubUtils.getOctokitOptions(githubAuth, {
baseUrl: getApiUrl(githubUrl),
userAgent: "CodeQL Action",
log: consoleLogLevel({ level: "debug" }),
log: consoleLogLevel({ level: "info" }),
})
);
};