Console log thread should be a daemon thread.

This commit is contained in:
immibis 2013-02-23 19:27:16 +13:00
parent 604e81a323
commit 75c1dc1091
1 changed files with 1 additions and 0 deletions

View File

@ -151,6 +151,7 @@ public class FMLRelaunchLog
log.myLog.setLevel(Level.ALL);
log.myLog.setUseParentHandlers(false);
consoleLogThread = new Thread(new ConsoleLogThread());
consoleLogThread.setDaemon(true);
consoleLogThread.start();
formatter = new FMLLogFormatter();
try