jjchiw / gelf4net

GELF log4net Appender - graylog2
MIT License
63 stars 59 forks source link

Added better support for logging additional properties #5

Closed micahlmartin closed 11 years ago

micahlmartin commented 11 years ago

I refactored the bulk of what was in the appender over to GelfLayout which is responsible for assmebling the actual message. GelfAppender is now simply just a transport mechanism.

Added support for logging additional properties from custom objects.

_log.Debug(new { Test = 123 })

will render a Gelf message with the additional property

{
     ...
     _Test: 123
    ...
}
micahlmartin commented 11 years ago

Need to make a few more changes