Hello,

What is the logging system used in Apache CXF -- Log4j or J2SE logging?

Also, when I'm running a web service client using a CXF-generated SEI
using an Ant target similar to the below, I am only getting INFO level
output on the command line.  How do I get DEBUG-level output?  The
current documentation on logging[1] just describes server-side logging,
not client-side.

   <path id="cxf.classpath">
      <pathelement location="${build.classes.dir}"/>
      <fileset dir="${env.CXF_HOME}/lib">
         <include name="*.jar"/>
      </fileset>
   </path>

  <target name="run">
      <java classname="client.WSClient" fork="true">            
         <classpath>
            <path refid="cxf.classpath"/>
         </classpath>
      </java>
   </target>

Thanks,
Glen

[1] http://cwiki.apache.org/CXF20DOC/debugging.html


Reply via email to