-----Message d'origine-----
De : Russell Lane [mailto:[EMAIL PROTECTED]]
Envoyé : mardi 21
décembre 2004 16:14
À : [EMAIL PROTECTED]
Objet : missing appenders
for log4j
I'm running Java Axis v.1.2 RC 2 on Tomcat v.4.1.31.
I followed the
install instructions correctly (I think), and am now deploying
some
trivial web services to find my way around.
I've written a small
handful of Java clients that consume the web
services using the Service and
Call classes. Things in general are
fine, however I consistenly get the
following warning message:
log4j:WARN No appenders could be found for
logger
(org.apache.axis.i28n.ProjectResourceBundle).
log4j:WARN Please
initialize the log4j system properly.
I have log4j-1.2.8.jar installed in
.\axis\WIN-INF\lib, and also have it
in my classpath. This doesn't
prevent stuff from working, but I've like
to clean up the
configuration.
Does anyone know what is causing this error, or have
suggestions on
where I could look for more information?
Thanks
-
"This e-mail message is confidential, for the exclusive use of the addressee and its contents shall not constitute a commitment by AXA, except as otherwise specifically provided in writing by AXA. Any unauthorized disclosure, use or dissemination, either whole or partial, is prohibited. If you are not the intended recipient of the message, please notify the sender immediately."
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender"> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d [%t] %p %C - %m%n"/> </layout> </appender> <root> <priority value="info" /> <appender-ref ref="CONSOLE" /> </root> </log4j:configuration>