|
An Outputter is a logging destination with a particular way to format data. It has a level threshold and a flexible level mask.
Outputters must have names.
Outputters have their own level thresholds that default to root level. They will not write any log events with a rank less than their threshold.
Alternatively, an Outputter can be told to log specific levels only:
o = StdoutOutputter.new 'console' o.only_at DEBUG, FATAL # only DEBUG and FATAL get written
When outputters are created, they store themselves in an Outputter repository similar to the Logger repository.
StdoutOutputter.new 'console' => Create 'console' outputter Outputter['console'] => Get it back from the stash.
An outputter has a format defined by its Formatter. If no Formatter is specified, DefaultFormatter will be used.
The basic Outputter class is both abstract and a null object.
Two outputters named ‘stdout’ and ‘stderr’ are created automatically at the root level. They are nice shortcuts.
Outputter['stdout'] => 'stdout' Outputter['stderr'] => 'stderr' Outputter.stdout => 'stdout' Outputter.stderr => 'stderr'
Outputters must have names and receive hash arguments. The parameter name for the hash args can be either a symbol or a string. All defined outputters accept :level and :formatter arguments. For arguments specific to a convenience Outputter, please look at the class description.
The level threshold, the levels to log at (only_at) and formatter can be changed dynamically using the = methods.
As a collective example of all this, here are various ways to set up an IOOutputter:
IOOutputter.new ExoticIO.new 'exotic', 'level' => WARN, :formatter => MyFormatter.new # an equivalent way: o = IOOutputter.new ExoticIO.new 'exotic' o.level = WARN o.formatter = MyFormatter # we can specify just the class o.only_at = THIS, THAT
Specify outputters as children of <log4r_config>:
<log4r_config> <outputter name="myout" type="Log4r::StdoutOutputter"> <only_at>DEBUG, INFO</only_at> </outputter> <outputter name="file" level="WARN"> <type>FileOutputter</type> <filename>#{logpath}/file.log</filename> <trunc>false</trunc> </outputter> ...
As explained in log4r/configurator.rb, the hash arguments you would normally pass to new are specified as XML parameters. It is given an IO object to write to, a Formatter to call, and, optionally, levels to write at.
Outputters invoke print then flush on the wrapped IO object. If the IO chokes, the Outputter will close the IO and set its level to OFF.
Version: | $Id: outputter.rb,v 1.6 2003/09/12 23:55:43 fando Exp $ |
Author: | Leon Torres <leon@ugcs.caltech.edu> |
Required files |
Classes and Modules |