diff --git a/app.py b/app.py index 15ed3bb..270a7c0 100644 --- a/app.py +++ b/app.py @@ -80,6 +80,7 @@ def proxy(video_id): """ + logging.info(f"Caching response for video ID: {video_id}") cache.set(video_id, html_response, expire=CACHE_EXPIRATION_SECONDS) return Response(html_response, mimetype="text/html")