From da7ad5b3426cc66df40d4a6bb7b375739d4ad4aa Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Tue, 6 Feb 2018 14:17:46 +0100 Subject: [PATCH] chore: downgrade cached result log to trace --- lib/platform/github/gh-got-wrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js index 311b9126d5..b05f3b7f7f 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 { -- GitLab