From 1362d980b9749a09f918f8993ddaf48790fc1fc1 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 26 Jun 2018 12:54:57 +0200
Subject: [PATCH] logs: info not warn when branch automerge fails

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

diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index 4502e70b86..13a058e561 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -548,7 +548,7 @@ async function mergeBranch(branchName, mergeType) {
     try {
       await get.patch(url, options);
     } catch (err) {
-      logger.warn(
+      logger.info(
         expandError(err),
         `Error pushing branch merge for ${branchName}`
       );
@@ -565,7 +565,7 @@ async function mergeBranch(branchName, mergeType) {
     try {
       await get.post(url, options);
     } catch (err) {
-      logger.warn(
+      logger.info(
         expandError(err),
         `Error pushing branch merge for ${branchName}`
       );
-- 
GitLab