Hi Guys in most of the java projects usingspring , i find this entry in web.xml which execute it at the start up of server itself
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
In my legacy project also. i saw this setting. But when i dived in to the code , i did not find any special done in this classes or further classes called internally by this class. I am sure there must be some good purpose behind putting above code snippet and i am missing it. In every class which putting the logs in file here is the entry
private static final Log log = LogFactory.getLog(PoolManagerImpl.class);
log.debug("Number of connection pools to create = ["
+ connection.size() + "]");
Even if i comment out my web.xml entry, logging works fine. so whats the purpose of Log4jConfigListener?