Details
Description
The following logging message appears even when the view is specifically configured not to be an ICEfaces view:
INFO: ICEfaces disabled for view /nonicefaces.xhtml (h:head and h:body tags must be used)
BridgeSetup should not log anything in this case (when the configuration is explicit.)
public void processEvent(SystemEvent event) throws AbortProcessingException {
final FacesContext context = FacesContext.getCurrentInstance();
if (!EnvUtils.isICEfacesView(context)) {
if (log.isLoggable(Level.INFO)) {
log.log(Level.INFO, "ICEfaces disabled for view " + context.getViewRoot().getViewId() +
" (h:head and h:body tags must be used)");
}
return;
}
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #21892 | Tue Jul 13 09:34:40 MDT 2010 | deryk.sinotte | |
Files Changed | ||||
MODIFY
/icefaces/scratchpads/glimmer/core/src/main/java/org/icefaces/util/EnvUtils.java
MODIFY /icefaces/scratchpads/glimmer/core/src/main/java/org/icefaces/event/BridgeSetup.java |