Skip to content

Commit 58cc1ce

Browse files
committed
chore: more logs
1 parent 21b8b0b commit 58cc1ce

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ async function getDependencyReleaseLine(
175175
// Function to get the credits section
176176
function getCreditsSection(): string {
177177
const authors = Array.from(allAuthors).sort();
178+
console.log(`[Debug] Authors: ${authors}`);
178179
const authorLinks = authors.map((author) => `@${author}`);
179180

180181
if (authorLinks.length === 0) {
@@ -220,6 +221,7 @@ const wrappedGetDependencyReleaseLine: ChangelogFunctions["getDependencyReleaseL
220221
opts
221222
);
222223

224+
console.log(`[Debug] Authors: ${allAuthors}`);
223225
// Add credits section if we have authors
224226
if (allAuthors.size > 0) {
225227
const credits = getCreditsSection();

0 commit comments

Comments
 (0)