Class: Logging::Appenders::Stderr

Inherits:
IO show all
Defined in:
lib/gems/logging-0.9.4/lib/logging/appenders/console.rb

Overview

This class provides an Appender that can write to STDERR.

Instance Attribute Summary

Attributes inherited from Logging::Appender

#layout, #level, #name

Instance Method Summary collapse

Methods inherited from IO

#close, #flush

Methods inherited from Logging::Appender

#<<, [], []=, #append, #close, #closed?, #flush, #inspect, remove, stderr, stdout

Constructor Details

#initialize(*args) ⇒ Stderr

call-seq:

Stderr.new( name = 'stderr' )
Stderr.new( :layout => layout )
Stderr.new( name = 'stderr', :level => 'warn' )

Creates a new Stderr Appender. The name ‘stderr’ 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


52
53
54
55
56
57
# File 'lib/gems/logging-0.9.4/lib/logging/appenders/console.rb', line 52

def initialize( *args )
  opts = Hash === args.last ? args.pop : {}
  name = args.empty? ? 'stderr' : args.shift 

  super(name, STDERR, opts)
end