Is it true that the 3 lines in my log4j.properties file:

log4j.logger.org.apache.commons=ERROR
log4j.logger.org.apache.struts=WARN
log4j.logger.servletunit.struts=WARN

Will end up as 9 lines in log4j.xml (carriage returns aside)

  <logger name="org.apache.commons">
    <level value="WARN"/>
  </logger>
  <logger name="org.apache.struts">
    <level value="WARN"/>
  </logger>
  <logger name="servletunit.struts">
    <level value="WARN"/>
  </logger>

Just want to verify that this is the simplest way to convert a
.properties to an .xml file?  Also, what's the main reason for
converting - validation against a DTD?

Thanks,

Matt



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

Reply via email to