From 400b2f9929300a74e2a81707f910073de23536cb Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 14 Sep 2018 12:50:24 +0200
Subject: [PATCH] =?UTF-8?q?logs:=20don=E2=80=99t=20warn=20for=20graphql=20?=
 =?UTF-8?q?failure?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 lib/platform/github/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index 64100d76b1..767b0e5227 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -900,7 +900,7 @@ async function getOpenPrs() {
       const prNumbers = [];
       // istanbul ignore if
       if (!res.data) {
-        logger.warn({ query, res }, 'No graphql res.data');
+        logger.info({ query, res }, 'No graphql res.data');
         return {};
       }
       for (const pr of res.data.repository.pullRequests.nodes) {
-- 
GitLab