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
In the current implementation, errors are logged using slf4j. For example, if a value cannot be found in the context, it is just omitted from the result. I would like to obtain a list of the values that could not be found.
What would be the best way to implement this in your opinion?
The text was updated successfully, but these errors were encountered:
I added this feature, and created a pull request: #71
I ended up implementing it by adding an optional field to the visitor. If it is defined, errors will be accumulated in it. If it is not defined, nothing will happen. The change should be backwards compatible since I introduced a separate renderStrict method
In the current implementation, errors are logged using slf4j. For example, if a value cannot be found in the context, it is just omitted from the result. I would like to obtain a list of the values that could not be found.
What would be the best way to implement this in your opinion?
The text was updated successfully, but these errors were encountered: