Skip to content

Commit

Permalink
Fix label logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgn committed Mar 15, 2020
1 parent 9c4bf3c commit 104d878
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/merge.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ async function removeLabels(octokit, pullRequest, mergeRemoveLabels) {
return;
}

logger.debug("Removing labels:", labels);
logger.debug(
"Removing labels:",
labels.map(label => label.name)
);

await Promise.all(
labels.map(label =>
Expand Down

0 comments on commit 104d878

Please sign in to comment.