From ab166d708882e2268afef2df37c5bf6fa9bebeee Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Sat, 8 Feb 2020 15:49:13 +0100
Subject: [PATCH] fix(gitlab): warn not error when failing to add assignees

---
 lib/platform/gitlab/index.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/platform/gitlab/index.ts b/lib/platform/gitlab/index.ts
index 8d59b1fb1e..c379638c5e 100644
--- a/lib/platform/gitlab/index.ts
+++ b/lib/platform/gitlab/index.ts
@@ -790,7 +790,8 @@ export async function addAssignees(
       logger.error({ iid, assignees }, 'Failed to add multiple assignees');
     }
   } catch (err) {
-    logger.error({ iid, assignees }, 'Failed to add assignees');
+    logger.debug({ err }, 'addAssignees error');
+    logger.warn({ iid, assignees }, 'Failed to add assignees');
   }
 }
 
-- 
GitLab