jurmous / logstash-log4j2

Log4j2 plugin for logstash
41 stars 21 forks source link

Parts of stack trace was missing #1

Closed mkeshav closed 10 years ago

mkeshav commented 10 years ago

When I used your plugin to use log4j2 with logstash, only part of the stack trace was displayed. This is due to the changes in log4j2. I have modified the plugin to iterate over all the cause proxies to get a full stack trace. I have also upgraded to release versions of log4j2 jar files

jurmous commented 10 years ago

Thanks! :)

jurmous commented 10 years ago

After some testing I encountered a crash when an Exception was passed with an empty message. This is fixed on trunk in f9edb6769a68b2d0916b3ade9d798f06f355b2c6 and released in 3.0 with your code merged into it.

mkeshav commented 10 years ago

thank you