Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception when logging an object #24

Closed
undso opened this issue Apr 3, 2014 · 0 comments
Closed

Exception when logging an object #24

undso opened this issue Apr 3, 2014 · 0 comments

Comments

@undso
Copy link

undso commented Apr 3, 2014

With the Log4 API it is possible to log java.lang.Object an not only String.
The class org.apache.log4j.Category contains the methode:

public void info(Object message) { [...] }

If you try to log such an object you'll get an IllegalArgumentException in the methode org.bson.BasicBSONEncoder._putObjectField().

To fix this issue we should change a line in the LoggingEventBsonifierImpl.
From nullSafePut(result, KEY_MESSAGE, loggingEvent.getMessage());
To nullSafePut(result, KEY_MESSAGE, loggingEvent.getRenderedMessage());

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant