vote up 2 vote down star

I already put the log4jConfigLocation in web.xml, but still, i get warning

log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). log4j:WARN Please initialize the log4j system properly. what did i missed out?

    <context-param>
    	<param-name>contextConfigLocation</param-name>
    	<param-value>

    			/WEB-INF/applicationContext.xml

    	</param-value>
    </context-param>

 <context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>/WEB-INF/classes/log4j.properties</param-value>
  </context-param>



  <listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  </listener>

  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>





    <servlet>
    	<servlet-name>suara2</servlet-name>
    	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

    </servlet>
    <servlet-mapping>
    	<servlet-name>suara2</servlet-name>
    	<url-pattern>/*</url-pattern>
    </servlet-mapping>
flag

64% accept rate
Posting the content of WEB-INF/classes/log4j.properties might help (and making sure it's there and readable as well). – CodeGoat Aug 12 at 13:32
Could you post the start of the web.xml file? Which version of servlet have you configured? What application server are you deploying on? – Mercer Traieste Aug 12 at 13:34
this is my log4j.properties copypastecode.com/8714 – cometta Aug 12 at 13:35
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "java.sun.com/dtd/web-app_2_3.dtd">; <web-app> – cometta Aug 12 at 13:36

2 Answers

vote up 2 vote down check

If that's the entire log4j.properties file it looks like you're never actually creating a logger. You need a line like:

log4j.rootLogger=debug,A1
link|flag
vote up 0 vote down

You'll see this warning if log4j can't find a file "log4j.properties" or "log4j.xml" anywhere.

link|flag
i confirm the location is correct . coz when i rename log4j.properties to other name, it give error – cometta Aug 12 at 13:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.