Merge pull request #188 from immibis/master
Console log thread should be a daemon thread.
This commit is contained in:
commit
53855cc96b
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue