From 057171c25cabd6d26d0539bfb1867d05b1eeb402 Mon Sep 17 00:00:00 2001 From: ChatDisabled <44729807+ChatDisabled@users.noreply.github.com> Date: Sun, 17 Dec 2023 08:15:12 +0100 Subject: [PATCH] chore: logging --- src/discord.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/discord.js b/src/discord.js index cbd05a9..73dd399 100644 --- a/src/discord.js +++ b/src/discord.js @@ -59,6 +59,8 @@ function getChangeLog(commits, size) { const commit = commits[i] const sha = commit.id.substring(0, 6) + console.log(JSON.stringify(commit)) + console.log(commit.title) const message = commit.message.length > MAX_MESSAGE_LENGTH ? commit.message.substring(0, MAX_MESSAGE_LENGTH) + '...'