module CrawlStation::Logger

Attributes

logger[RW]

Public Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/crawl_station/logger.rb, line 5
def method_missing(method_name, *args, &block)
  return false if logger.nil?
  return super unless logger.respond_to?(method_name)
  logger.send(method_name, *args, &block)
end