diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js index 311b9126d5f3f49ca1a6077245161c37fc40e4ae..b05f3b7f7fa6982cb71d1e8dd7596a88eb5a0321 100644 --- a/lib/platform/github/gh-got-wrapper.js +++ b/lib/platform/github/gh-got-wrapper.js @@ -13,7 +13,7 @@ async function get(path, opts, retries = 5) { const method = opts && opts.method ? opts.method : 'get'; logger.debug(`${method.toUpperCase()} ${path} [retries=${retries}]`); if (method === 'get' && cache[path]) { - logger.debug({ path }, 'Returning cached result'); + logger.trace({ path }, 'Returning cached result'); return cache[path]; } try {