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 generating error messages XmlReader.getPath() doesn't display the position of the element that has caused the error is part of a list with sibling elements.
then the error message should print /foo/bar[1] (1 is the index/position of the element in the list, starting at 0) as path and not just /foo/bar as it is right now. Makes debugging easier, because we know which element (in the list of elements) has caused this issue.
The text was updated successfully, but these errors were encountered:
When generating error messages
XmlReader.getPath()
doesn't display the position of the element that has caused the error is part of a list with sibling elements.Example:
then the error message should print
/foo/bar[1]
(1 is the index/position of the element in the list, starting at 0) as path and not just/foo/bar
as it is right now. Makes debugging easier, because we know which element (in the list of elements) has caused this issue.The text was updated successfully, but these errors were encountered: