Log HTML response

This commit is contained in:
MMaker 2025-03-03 13:15:19 -05:00
parent 6a78b81084
commit b0b552ee82
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

1
app.py
View File

@ -391,6 +391,7 @@ if you want to download videos, please consider using a tool like nndownload: ht
cache.set(f"{video_id}_html", html_response, expire=CACHE_EXPIRATION_HTML)
logger.info(f"{video_id}: Returning response")
logger.debug(f"{video_id}: HTML response:\n----------\n{html_response}----------")
return Response(html_response, mimetype="text/html")
@app.route("/owoembed")