You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/10/27 20:26:15 UTC

svn commit: r1189922 - /myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java

Author: lu4242
Date: Thu Oct 27 18:26:14 2011
New Revision: 1189922

URL: http://svn.apache.org/viewvc?rev=1189922&view=rev
Log:
MYFACES-3374 Compatibility with Servlet API 2.4

Modified:
    myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java

Modified: myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java?rev=1189922&r1=1189921&r2=1189922&view=diff
==============================================================================
--- myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java (original)
+++ myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java Thu Oct 27 18:26:14 2011
@@ -154,8 +154,7 @@ public abstract class AbstractFacesIniti
                   facesContext.isProjectStage(ProjectStage.Production)) &&
                  log.isLoggable(Level.INFO))
             {
-                String contextPath = servletContext.getContextPath();
-                log.info("ServletContext '" + (contextPath == null ? "/" : contextPath) + "' initialized.");
+                log.info("ServletContext initialized.");
             }
 
             WebConfigParamsLogger.logWebContextParams(facesContext);