Make the log writer thread a daemon thread

This commit is contained in:
hns 2003-12-09 17:04:49 +00:00
parent f3a623cf95
commit 90d5961546

View file

@ -80,6 +80,7 @@ public class Logging extends LogFactory {
if ((runner == null) || !runner.isAlive()) {
runner = new Runner();
runner.setDaemon(true);
runner.start();
}
@ -92,6 +93,7 @@ public class Logging extends LogFactory {
public static Log getConsoleLog() {
if ((runner == null) || !runner.isAlive()) {
runner = new Runner();
runner.setDaemon(true);
runner.start();
}