Commit e401f90a authored by Ilya Simonov's avatar Ilya Simonov

add logs

parent 1eb2ded7
...@@ -28,11 +28,14 @@ def send_video_to_s3(video_id=None): ...@@ -28,11 +28,14 @@ def send_video_to_s3(video_id=None):
log.info(f'File path: {file_path}') log.info(f'File path: {file_path}')
response = requests.get(file_path) response = requests.get(file_path)
log.info('response status code', response.status_code) log.info(f'response status code {response.status_code}')
content = response.content content = response.content
log.info('get content')
try: try:
log.info('Generating thumbnail...')
local_video.thumbnail = generate_thumbnail(file_path, video_name) local_video.thumbnail = generate_thumbnail(file_path, video_name)
log.info('Thumbnail generated successfully!')
except Exception as e: except Exception as e:
log.error(e) log.error(e)
log.info('Thumbnail generation failed!') log.info('Thumbnail generation failed!')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment