Sha256: e5dbe861e511991e7e3eb99d1f4aeb58d84970315589e79fb49ee9cb6ab68061

Contents?: true

Size: 1.18 KB

Versions: 11

Compression:

Stored size: 1.18 KB

Contents

# :stopdoc:
#
# The formatting of log messages is controlled by the layout given to the
# appender. By default all appenders use the Basic layout. It's pretty
# basic. However, a more sophisticated Pattern layout can be used or one of
# the Parseable layouts -- JSON or YAML.
#
# The available layouts are:
#
#   Logging.layouts.basic
#   Logging.layouts.pattern
#   Logging.layouts.json
#   Logging.layouts.yaml
#
# In this example we'll demonstrate use of different layouts and setting log
# levels in the appenders to filter out events.
#

  require 'logging'

  # only show "info" or higher messages on STDOUT using the Basic layout
  Logging.appenders.stdout(:level => :info)

  # send all log events to the development log (including debug) as JSON
  Logging.appenders.rolling_file(
    'development.log',
    :age    => 'daily',
    :layout => Logging.layouts.json
  )

  log = Logging.logger['Foo::Bar']
  log.add_appenders 'stdout', 'development.log'
  log.level = :debug

  log.debug "a very nice little debug message"
  log.info "things are operating nominally"
  log.warn "this is your last warning"
  log.error StandardError.new("something went horribly wrong")
  log.fatal "I Die!"

# :startdoc:

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/logging-2.1.0/examples/layouts.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/logging-2.1.0/examples/layouts.rb
logging-2.1.0 examples/layouts.rb
logging-2.0.0 examples/layouts.rb