From 24ac4c22cc79020844a581db9c5465d655a6d76f Mon Sep 17 00:00:00 2001 From: ChrisBAshton Date: Sun, 28 Feb 2016 16:44:31 +0000 Subject: [PATCH] fix #374 --- lib/wraith/cli.rb | 1 + lib/wraith/crop.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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