diff --git a/lib/wraith/cli.rb b/lib/wraith/cli.rb index 44bc66db..0133049b 100644 --- a/lib/wraith/cli.rb +++ b/lib/wraith/cli.rb @@ -93,6 +93,7 @@ def save_images(config_name, history = false) desc "crop_images [config_name]", "crops images to the same height" def crop_images(config_name) within_acceptable_limits do + logger.info "CROPPING IMAGES" crop = Wraith::CropImages.new(config_name) crop.crop_images end diff --git a/lib/wraith/crop.rb b/lib/wraith/crop.rb index 9390f066..3e876b82 100644 --- a/lib/wraith/crop.rb +++ b/lib/wraith/crop.rb @@ -16,7 +16,6 @@ def crop_images files = Dir.glob("#{wraith.directory}/*/*.png").sort Parallel.each(files.each_slice(2), :in_processes => Parallel.processor_count) do |base, compare| - logger.info "cropping images" crop_if_necessary base, compare end end