Removed some unused logs

This commit is contained in:
Ajay Ramachandran
2021-03-04 23:30:30 -05:00
parent e9b7eac289
commit 44f10b9ff9
2 changed files with 2 additions and 6 deletions

View File

@@ -67,15 +67,10 @@ async function getSegmentsByVideoID(req: Request, videoID: string, categories: C
return acc;
}, {});
console.log(segmentsByCategory)
for (const [category, categorySegments] of Object.entries(segmentsByCategory)) {
segments.push(...(await prepareCategorySegments(req, videoID as VideoID, category as Category, categorySegments, cache)));
}
console.log(segments)
return segments;
} catch (err) {
if (err) {