Hi,
am new to log4j and try to use it in one starting
Testing Servlet.
I created log4j.properties in WEB-INF/classes and placed the all the required jars correctly.
When I try to run my servlet with this code
private static Logger logger = Logger.getLogger(X.class);
am getting the exception --->>>
"javax.servlet.ServletException: Error instantiating servlet class X"
and rootcause --->>>>
"java.lang.NoClassDefFoundError: org/apache/log4j/Logger"
can you please help me how to resolve it??
thanks
indu