Skip to content

Commit

Permalink
Add name to clips json output
Browse files Browse the repository at this point in the history
  • Loading branch information
Wissididom committed Sep 22, 2024
1 parent f08e531 commit 9ec617a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion handleStreamer.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ export async function handleStreamer(
},
).then((res) => res.json())
).data;
console.log(JSON.stringify(clips, null, 2));
console.log(
`${broadcasterDisplayName} (${broadcasterLogin}): ${JSON.stringify(clips, null, 2)}`,
);
let creatorIds = [];
let videoIds = [];
let gameIds = [];
Expand Down

0 comments on commit 9ec617a

Please sign in to comment.