From f91d064d14f59e4ec9714712305d63d4d6f015bd Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Thu, 13 Sep 2018 05:54:21 +0200
Subject: [PATCH] logs: lower graphql warn to info

---
 lib/platform/github/index.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index 5d8b2c2705..57f9285a2a 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -996,7 +996,10 @@ async function getClosedPrs() {
       const prNumbers = [];
       // istanbul ignore if
       if (!res.data) {
-        logger.warn({ query, res }, 'No graphql res.data');
+        logger.info(
+          { query, res },
+          'No graphql res.data, returning empty list'
+        );
         return {};
       }
       for (const pr of res.data.repository.pullRequests.nodes) {
-- 
GitLab