From 8da24fba11402f8bf59fe48dda679b69de2b635c Mon Sep 17 00:00:00 2001 From: Benjamin Lannon Date: Wed, 12 Dec 2018 19:37:04 -0500 Subject: [PATCH] Adding temp debug statement --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index e6932b2..7e1de6b 100644 --- a/index.js +++ b/index.js @@ -74,6 +74,8 @@ function diffLabels(oldLabels, newLabels) { const oldLabel = oldLabels.filter(l => l.name === oLabel)[0]; const newLabel = newLabels.filter(l => l.name === oLabel)[0]; + console.log({ oldLabel, newLabel }); + if ( oldLabel.color !== newLabel.color || oldLabel.description !== newLabel.description