Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
If I use the constructor...
public LoggingEvent(Type callerStackBoundaryDeclaringType, log4net.Repository.ILoggerRepository repository, string loggerName, Level level, object message, Exception exception)
...to build a LoggingEvent object then the private field m_message will be populated with the incoming "message" parameter. The result is that both the MessageObject and the RenderedMessage property of LoggingEvent will have the correct message value.
However, if I use the following constructor...
public LoggingEvent(LoggingEventData data)
...where I populate the Message field of the LoggingEventData struct with some message then the m_message private field is not populated at all, it remains null. Therefore the MessageObject property of LoggingEvent will also be null. However, RenderedMessage will still have the correct value.
This causes an issue with at least one appender: gelf4net (https://github.com/jjchiw/gelf4net) which relies on the MessageObject property.
Regardless of gelf4net, I think it makes sense to populate as many private fields of LoggingEvent as possible using LoggingEventData, including m_message.
Thanks for your help,
Andras Nemes