Skip to content

Commit

Permalink
VAECache: fix logging for warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Bghira Bagheera committed Dec 2, 2023
1 parent 400ee70 commit af394ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/caching/vae.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def _process_images_in_batch(self) -> None:
qlen = self.process_queue.qsize()
for idx in range(0, qlen):
filepath, image = self.process_queue.get()
filepaths.extend(filepath)
filepaths.append(filepath)
self.debug_log(f"Processing {filepath}")
if self.minimum_image_size is not None:
if not BucketManager.meets_resolution_requirements(
Expand Down

0 comments on commit af394ee

Please sign in to comment.