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