diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js
index bc39d0f40fda3d3ef9d19500f467c2391570e5f5..c3fe00c262131b57a2a222884f89c43c837003e8 100644
--- a/lib/platform/github/gh-got-wrapper.js
+++ b/lib/platform/github/gh-got-wrapper.js
@@ -48,11 +48,14 @@ async function get(path, options, retries = 5) {
         try {
           const cacheResult = await renovateCache.get(cacheNamespace, path);
           if (cacheResult.etag === etag) {
-            logger.trace({ path }, 'Returning cached paginated result');
+            logger.debug({ path }, 'Returning cached paginated result');
             res.body = cacheResult.body;
             return res;
           }
-          logger.trace({ path }, 'Outdated pagination cache');
+          logger.debug(
+            { oldEtag: cacheResult.etag, newEtag: etag, path },
+            'Outdated pagination cache'
+          );
         } catch (err) {
           logger.trace({ path }, 'Paginated cache miss');
         }