ECS: name the ecs thread

This commit is contained in:
Jakub Valtar
2016-04-29 01:24:09 +02:00
parent c01cb85bc1
commit a8eb88ec94

View File

@@ -214,7 +214,7 @@ public class ErrorCheckerService {
public void start() {
scheduler = Executors.newSingleThreadScheduledExecutor();
errorCheckerThread = new Thread(mainLoop);
errorCheckerThread = new Thread(mainLoop, "ECS");
errorCheckerThread.start();
}