node_xslt
node_xslt copied to clipboard
capture internal errors
Would be nice if we could capture internal warnings (and errors).
In particular output generated by <xsl:message>a warning message</xsl:message>.
@MartijnR I'll try something.
Thanks @andreyknupp!
Yes, retrievable after transformation is complete (or has quit due to a fatal error) - synchronously seems most useful in my opinion - with something like .getErrors(), basically the equivalent of libxml_get_errors which returns three different type of errors (warning, error, fatal).
Yep!