name tunnel starter threads

This commit is contained in:
zzz
2015-04-22 20:17:33 +00:00
parent 638cadc3c9
commit ae3a5f7b25

View File

@ -209,7 +209,7 @@ public class TunnelController implements Logging {
if (_state != TunnelState.STOPPED && _state != TunnelState.START_ON_LOAD) if (_state != TunnelState.STOPPED && _state != TunnelState.START_ON_LOAD)
return; return;
} }
new I2PAppThread(new Runnable() { public void run() { startTunnel(); } }).start(); new I2PAppThread(new Runnable() { public void run() { startTunnel(); } }, "Tunnel Starter " + getName()).start();
} }
/** /**