Class Log4r::Formatter
In: /home/cepheus/projects/prep/log4r-1.0.0/src/log4r/formatter.rb
Parent: Object
Formatter is an abstract class
Methods
format    new   
Public Class methods
new()
Raises an exception if called directly.
Public Instance methods
format(level, logger, tracer, data)
Define this method in a subclass to format data.

level
The integer level of the log event. Use LNAMES[level] to get the actual level name.
logger
The logger that was invoked. Contains useful data. Please see Inheritance in log4r/logger.rb for details.
tracer
The execution stack returned by caller at the log event. It is nil if the invoked Logger's trace is false.
data
The object that was passed into the logging method.