Open
Description
I'd like to use Bugsnag with custom reports that may include some objects in the tabs. It's pretty close with the current API, but the Serializer
is too restrictive:
this.mapper.setSerializationInclusion(Include.NON_EMPTY).setVisibilityChecker(this.mapper.getVisibilityChecker().with(Visibility.NONE));
Please provide a way to customize it, allowing us to use different ObjectMapper
. Some of us don't want Jackson annotations all over the code.
It would be even better if we could replace the serializer altogether and the dependency on Jackson was optional.