Class: WsdlMapper::Runtime::Middlewares::AbstractLogger
- Inherits:
-
Object
- Object
- WsdlMapper::Runtime::Middlewares::AbstractLogger
- Defined in:
- lib/wsdl_mapper/runtime/middlewares/abstract_logger.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(logger = Logger.new(STDOUT), log_level: Logger::DEBUG) ⇒ AbstractLogger
constructor
A new instance of AbstractLogger.
Constructor Details
#initialize(logger = Logger.new(STDOUT), log_level: Logger::DEBUG) ⇒ AbstractLogger
Returns a new instance of AbstractLogger.
7 8 9 10 |
# File 'lib/wsdl_mapper/runtime/middlewares/abstract_logger.rb', line 7 def initialize(logger = Logger.new(STDOUT), log_level: Logger::DEBUG) @logger = logger @log_level = log_level end |