Java Logging
Hi,
Is there a way to use the java.util.logging class to create custom xml logs?
Here is a typical output I would like to see:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE log SYSTEM "logger.dtd">
<log>
<record>
<date>2000-08-23 19:21:05</date>
<millis>967083665789</millis><-- GET RID OF THIS
<sequence>1256</sequence>
<logger>kgh.test.fred</logger>
<level>INFO</level>
<class>kgh.test.XMLTest</class>
<method>writeLog</method>
<thread>10</thread>
<message>Hello world!</message>
<customTAG1>my custom tag</customTAG1>
<customTAG2>my custom tag</customTAG2>
<customTAG3>my custom tag</customTAG3>
</record>
</log>
Thanks

