Class: Log4r::Log4jXmlFormatter

Inherits:
BasicFormatter show all
Defined in:
lib/log4r/formatter/log4jxmlformatter.rb

Instance Method Summary collapse

Methods inherited from BasicFormatter

#format_object, #initialize

Methods inherited from Formatter

#initialize

Constructor Details

This class inherits a constructor from Log4r::BasicFormatter

Instance Method Details

#format(logevent) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/log4r/formatter/log4jxmlformatter.rb', line 20

def format(logevent)
  logger = logevent.fullname.gsub('::', '.')
  timestamp = (Time.now.to_f * 1000).to_i
  level = LNAMES[logevent.level]
  message = format_object(logevent.data)
  exception = message if logevent.data.kind_of? Exception
  file, line, method = parse_caller(logevent.tracer[0]) if logevent.tracer
  
  builder = Builder::XmlMarkup.new
  xml = builder.log4j :event, :logger => logger,
                              :timestamp => timestamp,
                              :level => level,
                              :thread => '' do |e|
          e.log4j :NDC, NDC.get
          e.log4j :message, message
          e.log4j :throwable, exception if exception
          e.log4j :locationInfo, :class => '',
                                 :method => method,
                                 :file => file,
                                 :line => line
          e.log4j :properties do |p|
            MDC.get_context.each do |key, value|
              p.log4j :data, :name => key, :value => value
            end
          end
        end
  xml
end