Refactor duplicated #log method
This commit is contained in:
parent
f6b850e7a4
commit
2ffdc5fa27
|
@ -18,6 +18,14 @@ module Jobs
|
||||||
class Base
|
class Base
|
||||||
include Sidekiq::Worker
|
include Sidekiq::Worker
|
||||||
|
|
||||||
|
def log(*args)
|
||||||
|
puts args
|
||||||
|
args.each do |arg|
|
||||||
|
Rails.logger.info "#{Time.now.to_formatted_s(:db)}: [#{self.class.name.upcase}] #{arg}"
|
||||||
|
end
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
def self.delayed_perform(opts={})
|
def self.delayed_perform(opts={})
|
||||||
self.new.perform(opts)
|
self.new.perform(opts)
|
||||||
end
|
end
|
||||||
|
|
|
@ -106,14 +106,6 @@ module Jobs
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
def log(*args)
|
|
||||||
puts args
|
|
||||||
args.each do |arg|
|
|
||||||
Rails.logger.info "#{Time.now.to_formatted_s(:db)}: [EXPORTER] #{arg}"
|
|
||||||
end
|
|
||||||
true
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -276,14 +276,6 @@ module Jobs
|
||||||
@warnings << message
|
@warnings << message
|
||||||
end
|
end
|
||||||
|
|
||||||
def log(*args)
|
|
||||||
puts args
|
|
||||||
args.each do |arg|
|
|
||||||
Rails.logger.info "#{Time.now.to_formatted_s(:db)}: [IMPORTER] #{arg}"
|
|
||||||
end
|
|
||||||
true
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue