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.

Examples:

Yell.new :stdout, name: 'Foo'

class Foo
  include Yell::Loggable
end

Foo.new.logger.info "Hello World"

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



17
18
19
# File 'lib/yell/loggable.rb', line 17

def self.included(base)
  base.extend(ClassMethods)
end

Instance Method Details

#loggerObject



27
28
29
# File 'lib/yell/loggable.rb', line 27

def logger
  self.class.logger
end