I have a similar problem as this post: Warning: This page calls for XML namespace http://www.facebook.com/2008/fbml declared with prefix fb but no taglibrary exists for that namespace
However, in my case, the error is related to SVG elements. I'm attempting to include inline svg:
<div>
<ui:include src="img/foo.svg" />
</div>
And this is the error I get:
Warning: This page calls for XML namespace http://www.w3.org/2000/svg declared with prefix path but no taglibrary exists for that namespace.
I know that I'm supposed to just ignore the error, but I don't want an error showing up at all. Currently a p:growl
shows up with that message. How do I turn of the growl for that particular message? I don't want to remove the p:growl
tag completely from the page since it's used for other meaningful error messages.