Module: Yell::Loggable
- Defined in:
- lib/yell/loggable.rb
Overview
Include this module to add a logger to any class.
When including this module, your class will have a :logger instance method available. Before you can use it, you will need to define a Yell logger and provide it with the name of your class.
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
21 22 23 |
# File 'lib/yell/loggable.rb', line 21 def self.included(base) base.extend(ClassMethods) end |
Instance Method Details
#logger ⇒ Object
31 32 33 |
# File 'lib/yell/loggable.rb', line 31 def logger self.class.logger end |