Better debugging
All checks were successful
Build Docker image / test (push) Successful in 3m59s
Build Docker image / build (push) Successful in 5m8s

This commit is contained in:
Roman Krček
2025-05-09 22:44:52 +02:00
parent df5538d7ee
commit 020a6271cf

View File

@@ -148,8 +148,8 @@ async def download_tt_video(url: str) -> str:
video_content = video.download().getbuffer()
video_hash = sha256(video_content).hexdigest()
log.info(f"{video_hash}")
log.info(f"{video_filepath}")
log.info(f"Video hash: {video_hash}")
log.info(f"Video filepath: {video_filepath}")
if await check_if_tt_downloaded(video_hash) is True:
return "Already downloaded"