Skip to content

Commit

Permalink
log the traceback for videos; bug 928242
Browse files Browse the repository at this point in the history
  • Loading branch information
clouserw committed Jan 28, 2014
1 parent 909f715 commit 2d4f4f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/video/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _resize_video(src, instance, **kw):
# we don't want the file around anyway.
if waffle.switch_is_active('video-encode'):
os.remove(video_file)
log.info('Error making thumbnail for %s' % instance.pk)
log.info('Error making thumbnail for %s' % instance.pk, exc_info=True)
return

for path in (instance.thumbnail_path, instance.image_path):
Expand Down

0 comments on commit 2d4f4f6

Please sign in to comment.