Yes 
Code:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/integrationApplicationContext.xml /WEB-INF/serviceApplicationContext.xml /WEB-INF/infrastructureApplicationContext.xml</param-value>
</context-param>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.config</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
if I remove the ContextLoaderListener the app deploys as expected, so the Log4jConfigListener works fine.
Thanks,
NEStor