I am using the Jenkins log parser plugin to retrieve and display the assembly log. The rule file looks like this:
# Compiler Error error /(?i) error:/ # Compiler Warning warning /(?i) warning:/
Everything works fine, but for some reason, at the end of the Parsed Output Console, I see this message,
NOTE: Some bad parsing rules have been found: Bad parsing rule: , Error:1 Bad parsing rule: , Error:1
This, I am sure, is a trivial problem, but unable to understand it at this moment. Please, help:)
EDIT: Based on Kobi's answer and looking at βParsing rule files,β I fixed it this way (one place after the colon). This worked perfectly as expected.
# Compiler Error error /(?i)error: / # Compiler Warning warning /(?i)warning: /
source share