Parent

Methods

Logging::Appenders::Stdout

This class provides an Appender that can write to STDOUT.

Public Class Methods

new( name = 'stdout', :level => 'info' ) click to toggle source

Creates a new Stdout Appender. The name ‘stdout’ will be used unless another is given. Optionally, a layout can be given for the appender to use (otherwise a basic appender will be created) and a log level can be specified.

Options:

   :layout   => the layout to use when formatting log events
   :level    => the level at which to log
    # File lib/logging/appenders/console.rb, line 32
32:     def initialize( *args )
33:       opts = Hash === args.last ? args.pop : {}
34:       name = args.empty? ? 'stdout' : args.shift
35: 
36:       super(name, STDOUT, opts)
37:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.