From ea28c6a4a894fce8b9a6e9668c438c85f2a224f0 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 19 Nov 2021 14:22:35 +0100
Subject: [PATCH] logs: trace cached datasource response

---
 lib/datasource/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/datasource/index.ts b/lib/datasource/index.ts
index 978599ee5b..d7ec46c4a1 100644
--- a/lib/datasource/index.ts
+++ b/lib/datasource/index.ts
@@ -63,7 +63,7 @@ async function getRegistryReleases(
     );
     // istanbul ignore if
     if (cachedResult) {
-      logger.debug({ cacheKey }, 'Returning cached datasource response');
+      logger.trace({ cacheKey }, 'Returning cached datasource response');
       return cachedResult;
     }
   }
-- 
GitLab