<< http://java.net/jira/browse/GLASSFISH-16573 >> SECTION: Modified Files ---------------------------- M jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java --- Change logging level to FINE (from INFO) for when there are no execute and render --- identifier targets specified f9r partial processing (Ajax). SECTION: Diffs ---------------------------- Index: jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java =================================================================== --- jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java (revision 9060) +++ jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java (working copy) @@ -241,8 +241,8 @@ // or there were no execute phase client ids. if (executeIds == null || executeIds.isEmpty()) { - if (LOGGER.isLoggable(Level.INFO)) { - LOGGER.log(Level.INFO, + if (LOGGER.isLoggable(Level.FINE)) { + LOGGER.log(Level.FINE, "No execute and render identifiers specified. Skipping component processing."); } return;