Router: Change thread name so it truncates better (ticket #1648)

This commit is contained in:
zzz
2015-09-01 11:56:58 +00:00
parent 7c703953be
commit 483d7c43ee

View File

@ -398,7 +398,7 @@ public class Router implements RouterClock.ClockShiftListener {
_oomListener = new OOMListener(_context);
_shutdownHook = new ShutdownHook(_context);
_gracefulShutdownDetector = new I2PAppThread(new GracefulShutdown(_context), "Graceful shutdown hook", true);
_gracefulShutdownDetector = new I2PAppThread(new GracefulShutdown(_context), "Graceful ShutdownHook", true);
_gracefulShutdownDetector.setPriority(Thread.NORM_PRIORITY + 1);
_gracefulShutdownDetector.start();