engine/lib/locomotive/logger.rb

12 lines
197 B
Ruby
Raw Normal View History

module Locomotive
2010-06-14 13:04:01 +00:00
module Logger
2010-06-14 13:04:01 +00:00
def self.method_missing(meth, args, &block)
if Locomotive.config.enable_logs == true
Rails.logger.send(meth, args)
end
end
2010-06-14 13:04:01 +00:00
end
end