Tom,


The configuration directives look good. What does the log4j internal logging output say?

At 08:36 AM 10/3/2003 +0000, tom ONeill wrote:
Hi all,

I was wondering if anyone could give me some ideas on what might be causing a small problem that I have. In my log4j properties file (XML format) I have set up a particular appender that writes to a file. I have also specified a particular Pattern for the appender. Now the logging entries are being written to the appender but are not using the pattern that I specified.

The appender is specified in the logging file as follows

<appender name="PerfAppender" class="org.apache.log4j.FileAppender">
           <param name="File"   value="Perf.log" />
           <param name="Append" value="true" />
           <layout class="org.apache.log4j.PatternLayout">
              <param name="ConversionPattern" value="%d - %m%n"/>
           </layout>
</appender>

This appender is then associated with a a particular logger as follows:

<logger name="MainLog">
<level class="de.start.sip.tools.logging.OurLogLevel" value="trace"/>
<appender-ref ref="PerfAppender" />
</logger>



When I execute my application the Perf.log file is being written however it does not include the datetime which I would expect from using %d in the specified pattern for the appender. Not all the code is my own so its possible that there is somthing going on that I dont know about but what I need to know is the possible ways in which an appender could be used without actually using the specified pattern?


Thanks,

Tom

-- Ceki Gülcü

     For log4j documentation consider "The complete log4j manual"
     ISBN: 2970036908 http://www.qos.ch/shop/products/clm_t.jsp

     import org.apache.Facetime;
     ApacheCon US 2003, 18-21 November http://apachecon.com/



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to