I\'m trying to log my web app using Log4j. I\'ve configured everything correctly. Yet log4j logging file is not generating.
Kept log4j.properties file in web-inf/class
You might created a possibly right configuration but it useless if the underlying environment isn't use it and this framework as the logging mechanism. Struts2 has also priorities or preferences for the logging frameworks to use. This priorities might change from version to version. As far as I remember from the version 2.3.12 the priority moved toward slf4j. Before the commons-logging was the priority #1.
To fix your issue you should check if you have deployed slf4j libraries then you should remove it so, the commons-logging is still a valid option but #2. You may also configure commons-logging to use log4j using commons-logging.properties
. By default it uses log4j if it find the log4j configuration.