Skip to content
Snippets Groups Projects
Commit c13c4986 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

logs: drop retries debug from gh wrapper

parent f0e53028
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ async function get(path, options, retries = 5) { ...@@ -18,7 +18,7 @@ async function get(path, options, retries = 5) {
logger.trace({ path }, 'Returning cached result'); logger.trace({ path }, 'Returning cached result');
return cache[path]; return cache[path];
} }
logger.debug(`${method.toUpperCase()} ${path} [retries=${retries}]`); logger.debug(`${method.toUpperCase()} ${path}`);
try { try {
if (appMode) { if (appMode) {
const appAccept = 'application/vnd.github.machine-man-preview+json'; const appAccept = 'application/vnd.github.machine-man-preview+json';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment