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"

Instance Method Summary collapse

Instance Method Details

#loggerObject



21
22
23
# File 'lib/yell/loggable.rb', line 21

def logger
  Yell[ self.class ]
end