taking backup of Log Files....

Hi friends,am using the java.util.logging package to develop the logging for my Multithreaded socket server application.Server is going to run any time so it will appends the data into the log file.I need to take backup of the log files per day without stopping my server application.Anyone know how to achieve this process?Thanks in advance...

[351 byte] By [83Krisha] at [2007-11-27 8:07:28]
# 1
On unix/linux:cp <yourlogfile> <some directory where you keep your backups>
-Kayaman-a at 2007-7-12 19:50:11 > top of Java-index,Java Essentials,Java Programming...
# 2
I'm with Kayman, leverage your OS to do this, rather than get your app to do it in-process. That's what it's there for
georgemca at 2007-7-12 19:50:11 > top of Java-index,Java Essentials,Java Programming...
# 3
ok.. but the log file is only one here ,how much capacity a log file should hold?
83Krisha at 2007-7-12 19:50:11 > top of Java-index,Java Essentials,Java Programming...