Console plugin - error patterns that span multiple lines
Submitted by Wednesday, 27 July, 2005 - 20:15
on
Is it possible for the Console plugin's error patterns to apply to more than line? For example, saxon errors look like
Error at xsl:value-of on line 41 of file:/C:/dev/yell/layout.xsl:
Error in expression time@status: Unexpected token @ beyond end of expression
and since the regex only applies to one line, I don't know how to get both the line number/file name and the error in there. I tried
Error at .* on line ([0-9]+) of file:/(.*):\n\s*Error in .*: (.*)
but it didn't work.
Any thoughta?
Error at xsl:value-of on line 41 of file:/C:/dev/yell/layout.xsl:
Error in expression time@status: Unexpected token @ beyond end of expression
and since the regex only applies to one line, I don't know how to get both the line number/file name and the error in there. I tried
Error at .* on line ([0-9]+) of file:/(.*):\n\s*Error in .*: (.*)
but it didn't work.
Any thoughta?