Add extra logging

This commit is contained in:
MMaker 2025-03-03 22:06:15 -05:00
parent df8537e811
commit a31d7d5a90
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

5
app.py
View File

@ -371,7 +371,10 @@ def proxy(video_id):
# so in addition to including these when the User Agent is a Twitter bot,
# we also include them when the video is too long to download in order to remove the play button.
if 'twitterbot' in request_user_agent or not download_allowed:
logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags")
if 'twitterbot' in request_user_agent:
logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags")
if not download_allowed:
logger.info(f"{video_id}: Video too long to download - will not show play button")
og_tags_str += f'\n<meta content="{thumbnail_url}" property="twitter:image"/>'
og_tags_str += '\n<meta content="summary_large_image" property="twitter:card"/>'
og_tags_str += '\n<meta content="www.nicovideo.gay" name="twitter:domain"/>'