Fixed error in thumbnail generation logging

pull/432/head
Christopher Usher 2 weeks ago committed by Mike Lang
parent 8020df8e60
commit a33b27dea3

@ -458,7 +458,7 @@ class Cutter(object):
image_data = frame
elif job.thumbnail_mode == 'TEMPLATE':
template, crop, location = get_template(self.dbmanager, job.thumbnail_template, job.thumbnail_crop, job.thumbnail_location)
self.logging.info('Generating thumbnail from the video frame at {} using {} as template'.format(job.thumbnail_time, job.thumbnail_template))
self.logger.info('Generating thumbnail from the video frame at {} using {} as template'.format(job.thumbnail_time, job.thumbnail_template))
image_data = compose_thumbnail_template(template, frame, crop, location)
else:
# shouldn't be able to happen given database constraints
@ -772,7 +772,7 @@ class VideoUpdater(object):
thumbnail_image = frame
elif job.thumbnail_mode == 'TEMPLATE':
template, crop, location = get_template(self.dbmanager, job.thumbnail_template, job.thumbnail_crop, job.thumbnail_location)
self.logging.info('Generating thumbnail from the video frame at {} using {} as template'.format(job.thumbnail_time, job.thumbnail_template))
self.logger.info('Generating thumbnail from the video frame at {} using {} as template'.format(job.thumbnail_time, job.thumbnail_template))
thumbnail_image = compose_thumbnail_template(template, frame, crop, location)
else:
assert False, "Bad thumbnail mode: {}".format(job.thumbnail_mode)

Loading…
Cancel
Save