独自のペーパークリップ プロセッサを作成しようとしていますが、ペーパークリップ ロガーにどのようにログを記録すればよいですか?
以下を試しましたが、log 'here is the processor'
何も出ません。どうすればいいですか?
module Paperclip
class MyProcessor < Processor
include Paperclip::Logger
def initialize(file, options = {}, attachment = nil)
super
@format = options[:format]
@current_format = File.extname(@file.path)
@basename = File.basename(@file.path, @current_format)
end
def make
log 'here is the processor'
end
end
end