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
Not so long ago, we encountered the following problem: objectionary/eo#2114, which was caused by strange behaviour of the <message> element. The issue lies in the separation of the exception caused by net.sf.saxon.expr.instruct.TerminationException and the message produced by the <message> element. In the logs, they appear separately: the <message> body is printed before the java exception is thrown, and quite often, it's difficult to connect them to each other.
Expected behavior: The error message (<message> body) should be included in the java exception message. In other words, when the java exception is thrown, we want to see the original reason that was added to the <message> body.
Currently, we have to search for them in the logs and attempt to connect them.
It seems that this is a well-known issue in the Saxon library:
@volodya-lombrozo it's a known problem, but thanks for reporting it. If you are willing to contribute with a PR, you are welcome. Otherwise, I don't know how to fix it :( Let's keep it open.
Not so long ago, we encountered the following problem: objectionary/eo#2114, which was caused by strange behaviour of the
<message>
element. The issue lies in the separation of the exception caused bynet.sf.saxon.expr.instruct.TerminationException
and the message produced by the<message>
element. In the logs, they appear separately: the<message>
body is printed before the java exception is thrown, and quite often, it's difficult to connect them to each other.Expected behavior: The error message (
<message>
body) should be included in the java exception message. In other words, when the java exception is thrown, we want to see the original reason that was added to the<message>
body.Currently, we have to search for them in the logs and attempt to connect them.
It seems that this is a well-known issue in the Saxon library:
The text was updated successfully, but these errors were encountered: