From 9f5726e5d3ae7c2790897c1a1e92f02eaada7c2f Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 31 Mar 2021 14:35:51 -0700 Subject: [PATCH] Log fetched snippets at level loud. --- ycdl/ytapi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ycdl/ytapi.py b/ycdl/ytapi.py index 618cc1f..fe3f5a4 100644 --- a/ycdl/ytapi.py +++ b/ycdl/ytapi.py @@ -138,6 +138,7 @@ class Youtube: ).execute() items = data['items'] self.log.debug('Got %d snippets.', len(items)) + self.log.loud(items) snippets.extend(items) videos = []