logs: drop retries debug from gh wrapper

This commit is contained in:
Rhys Arkins 2018-09-04 17:45:21 +02:00
parent f0e53028b0
commit c13c49863e

View file

@ -18,7 +18,7 @@ async function get(path, options, retries = 5) {
logger.trace({ path }, 'Returning cached result');
return cache[path];
}
logger.debug(`${method.toUpperCase()} ${path} [retries=${retries}]`);
logger.debug(`${method.toUpperCase()} ${path}`);
try {
if (appMode) {
const appAccept = 'application/vnd.github.machine-man-preview+json';