Skip to content

Commit

Permalink
fix(gitlab): warn not error when failing to add assignees
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 8, 2020
1 parent 2d7e7dc commit ab166d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/platform/gitlab/index.ts
Expand Up @@ -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');
}
}

Expand Down

0 comments on commit ab166d7

Please sign in to comment.