You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When printing out breadcrumbs on Android I am getting <recursion limit hit>. This is causing a problem when debugging errors by not showing much needed information.
This is where the variable MAX_NESTING is being set and applying the <recursion limit hit> message when recursion is over 3. Is it possible to remove this limit altogether or even higher it to a much larger number that won't hinder debugging?
The text was updated successfully, but these errors were encountered:
The main issue is that events can be of a certain size. In addition, Jackson seems to offer no way for us to see how many bytes we have written so far, so that we could truncate by size.
And so since we know nothing about user's data structures we err towards accepting more events vs dropping them due to size.
We have an issue to make these options configurable, so I'm closing this as a dupe of #543.
When printing out breadcrumbs on Android I am getting
<recursion limit hit>
. This is causing a problem when debugging errors by not showing much needed information.sentry-java/sentry/src/main/java/io/sentry/marshaller/json/SentryJsonGenerator.java
Lines 27 to 31 in 027544f
This is where the variable
MAX_NESTING
is being set and applying the<recursion limit hit>
message when recursion is over 3. Is it possible to remove this limit altogether or even higher it to a much larger number that won't hinder debugging?The text was updated successfully, but these errors were encountered: