module EasyLog4r::EasyLogger

EasyLogger

This class is what sets up the EasyLog4r Logger in your class when you include it in the class.

Public Class Methods

included(base) click to toggle source

Included hook which calls EasyLog4r::Logger#add_logger

# File lib/easy_log4r/easy_logger.rb, line 10
def self.included(base)
  EasyLog4r::Logger.add_logger(base, EasyLog4r::Logger.get_logger(base))
end