0
votes

I have a web app running under Tomcat 7 in Eclipse that uses its own instance of log4J (not Tomcat's). The logger is having problems locating logger.properties. Does anyone know where I should place the properties file so its picked up by the web app?

I've tried: WEB-INF/ WEB-INF/classes WEB-INF/lib WebContent WebContent/web_app_root

1

1 Answers

1
votes

It would appear that you need it at WEB-INF/classes/log4j.properties within your web application. Hope that helps...