Skip to content

Commit

Permalink
Changed async logger appender to be a daemon thread
Browse files Browse the repository at this point in the history
  • Loading branch information
collinsmith committed Sep 27, 2020
1 parent 1a6783f commit ad19056
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/com/riiablo/logger/AsyncOutputStreamAppender.java
Expand Up @@ -16,6 +16,7 @@ public AsyncOutputStreamAppender(OutputStream out) {

thread = new Thread(this);
thread.setName("AsyncOutputStreamAppender-Worker");
thread.setDaemon(true);
thread.start();
}

Expand Down

0 comments on commit ad19056

Please sign in to comment.