I am getting the following messsage in System out: "FacesMessage(s) have been enqueued....".
The solution with Sun's JavaServer Faces implementation (1.2_07-b03-FCS) was to add this to web.xml:
<context-param>
<description>
Set to true to disable the following warning message:
FacesMessage(s) have been enqueued, but may not have been displayed
</description>
<param-name>com.ibm.ws.jsf.disableEnqueuedMessagesWarning</param-name>
<param-value>true</param-value>
</context-param>
But for some reason that solution does not work with this Implemenation that I am using Mojarra (1.2_15-b01-FCS).
This document says I need to simply change the logger of RenderResponsePhase.
Faces Message(s) habe been encoded...
Essentially, I think I am asking is what is the logger class I need to configure for the RenderResponsePhase.