nyon wrote:
yes you are right. I got this problem because of my included script file. In the .js file there is a condition like "var1<var2". When parsing the ReducedHtmlParser class takes var2 as a tag and tried to find a closing one for it. Finding nothing it then logs a warning which quickly fills my applications log file. I have debug my code with tomahawk-1.1.5-SNAPSHOT.jar Also I found this problem with 1.1.3 official release.
I suggest you raise a bug report for this. The fix applied in svn is for a backslash followed by non-quote, which appears to be a different issue from the one you are experiencing.
This is a little surprising, I though the existing code would have handled this case correctly but if you see the problem then it must be there.
Note also that with any sane logging system you can control logging level by category, so just change your logging levels to set threshold to ERROR for the category "org.apache.myfaces.renderkit.html.util.ReducedHtmlParser".
Regards, Simon

