Details
Description
A message (of type wchar_t*) which is dynamically allocated (using malloc) and send to the Logger is not written correctly. This is because it is send to CharMessageBuffer instead of WideMessageBuffer (in MessageBuffer class).
Workarround:
cast wchar_t* to const wchar_t* before calling LOG4CXX_INFO (or any other level).