Class Log4r::BasicFormatter
In: /home/cepheus/projects/prep/log4r-1.0.0/src/log4r/formatter.rb
Parent: SimpleFormatter
BasicFormatter produces output like this:

  WARN loggername: I dropped my Wookie!

Or like this if trace is on:

  WARN loggername(file.rb at 12): Hot potato!

Also, it will pretty-print any Exception it gets and inspect everything else.

Methods
format    format_object   
Public Instance methods
format(level, logger, tracer, data)
format_object(obj)
Formats data according to its class:

String:Prints it out as normal.
Exception:Produces output similar to command-line exceptions.
Object:Prints the type of object, then the output of inspect. An example -- Array: [1, 2, 3]