Merge pull request #188 from immibis/master

Console log thread should be a daemon thread.
This commit is contained in:
cpw 2013-02-22 22:35:14 -08:00
commit 53855cc96b
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