Add some logs

This commit is contained in:
MMaker 2025-02-27 11:13:50 -05:00
parent 1963ba53d9
commit 6e95c1dd52
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -163,9 +163,11 @@ worker_thread.start()
def is_video_in_cdn(video_id):
"""Check if video exists in CDN"""
if cache and cache.get(f"{video_id}_uploaded"):
logger.info(f"Video {video_id} is already uploaded to CDN (cached)")
return True
if not s3_client:
logger.warning("S3 client not configured. Cannot check if video exists in CDN.")
return False
try: