From 6e95c1dd52f77c69485a3e7cb402f9c2879278ce Mon Sep 17 00:00:00 2001 From: MMaker Date: Thu, 27 Feb 2025 11:13:50 -0500 Subject: [PATCH] Add some logs --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index d4625ce..88a7387 100644 --- a/app.py +++ b/app.py @@ -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: