When I run svn log --xml 'repos' . It generates the log like...
<logentry revision="1">
<author>harry</author>
<date>2008-06-03T06:35:53.048870Z</date>
<msg>Initial Import.</msg>
</logentry>
Can it be outputed as
<logentry>
<revision>1</revision>
<author>harry</author>
<date>2008-06-03T06:35:53.048870Z</date>
<msg>Initial Import.</msg>
</logentry>
This will help me parse it easily to insert the data into the database. Or is there any easy way to store the log to a database.