make it clear we are doing something with playlist items.
This commit is contained in:
parent
1589e73063
commit
7b0cb87c32
1 changed files with 3 additions and 1 deletions
|
|
@ -313,7 +313,9 @@ class DownloadQueue(metaclass=Singleton):
|
|||
async def playlist_processor(i: int, etr: dict):
|
||||
await self.processors.acquire()
|
||||
try:
|
||||
LOG.debug(f"Processing entry {i}/{playlistCount} - ID: {etr.get('id')} - Title: {etr.get('title')}")
|
||||
LOG.info(
|
||||
f"Processing '{entry.get("title")}: {i}/{playlistCount}' - ID: {etr.get('id')} - Title: {etr.get('title')}"
|
||||
)
|
||||
|
||||
_status, _msg = ytdlp_reject(entry=etr, yt_params=yt_params)
|
||||
if not _status:
|
||||
|
|
|
|||
Loading…
Reference in a new issue