mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-06 08:18:41 +07:00
Changed async logger appender to be a daemon thread
This commit is contained in:
@ -16,6 +16,7 @@ public class AsyncOutputStreamAppender implements Appender, Runnable {
|
||||
|
||||
thread = new Thread(this);
|
||||
thread.setName("AsyncOutputStreamAppender-Worker");
|
||||
thread.setDaemon(true);
|
||||
thread.start();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user