|
Formatters are responsible for formatting LogEvent data. An Outputter owning a Formatter will invoke the Log4r::Formatter#format method prior to writing.
Specify the Formatter and its class (as type) under an <outputter> directive:
<outputter name="someout" type="sometype"> <formatter type="Log4r::BasicFormatter"/> </outputter>
As explained in log4r/configurator.rb, the hash arguments you would normally pass to new are specified as XML parameters. Only PatternFormatter has any of these.
Building a custom Formatter is extremely easy. Just define a class that extends Formatter and override the Formatter#format method. Then give it to any interested Outputters.
If you're interested in setting up your custom formatters in XML, please take a look at log4r/configurator.rb.
See Log4r::LogEvent
Version: | $Id: formatter.rb,v 1.4 2002/02/04 09:49:13 cepheus Exp $ |
Required files |
Classes and Modules |