Sha256: 3e4a6fb0c0d1b60e4a58795412f824d0e5317dba4b017905797e97547ab8c073

Contents?: true

Size: 1.07 KB

Versions: 9

Compression:

Stored size: 1.07 KB

Contents

#
# The Logging framework is very good about figuring out predictable names
# for loggers regardless of what object is used to create them. The name is
# the class name or module name of whatever is passed to the logger bracket
# method. The following lines all return the exact same logger instance:
#
#    ary = Array.new
#    Logging.logger[ary]
#    Logging.logger[Array]
#    Logging.logger['Array']
#    Logging.logger[:Array]
#
# So, if you want each class to have it's own logger this is very easy to
# do.
#

  require 'logging'

  Logging.logger.root.appenders = Logging.appenders.stdout
  Logging.logger.root.level = :info

  class Foo
    attr_reader :log
    def initialize() @log = Logging.logger[self]; end
  end

  class Foo::Bar
    attr_reader :log
    def initialize() @log = Logging.logger[self]; end
  end

  foo = Foo.new.log
  bar = Foo::Bar.new.log

  # you'll notice in these log messages that the logger names were taken
  # from the class names of the Foo and Foo::Bar instances
  foo.info 'this message came from Foo'
  bar.warn 'this is a warning from Foo::Bar'

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
TwP-logging-0.9.8.2 examples/classes.rb
TwP-logging-1.0.0 examples/classes.rb
TwP-logging-1.1.0 examples/classes.rb
TwP-logging-1.1.1 examples/classes.rb
TwP-logging-1.1.2 examples/classes.rb
logging-1.1.2 examples/classes.rb
logging-1.1.1 examples/classes.rb
logging-1.0.0 examples/classes.rb
logging-1.1.0 examples/classes.rb