Changed async logger appender to be a daemon thread

This commit is contained in:
Collin Smith 2020-09-27 13:12:53 -07:00
parent 1a6783f047
commit ad19056cfb

View File

@ -16,6 +16,7 @@ public class AsyncOutputStreamAppender implements Appender, Runnable {
thread = new Thread(this);
thread.setName("AsyncOutputStreamAppender-Worker");
thread.setDaemon(true);
thread.start();
}