mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Socks5Proxy: Log if server thread termination was interrupted
This commit is contained in:
parent
11ae6d6960
commit
48010f3b82
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ public final class Socks5Proxy {
|
||||||
this.serverThread.join();
|
this.serverThread.join();
|
||||||
}
|
}
|
||||||
catch (InterruptedException e) {
|
catch (InterruptedException e) {
|
||||||
// do nothing
|
LOGGER.log(Level.WARNING, "SOCKS5 server thread termination was interrupted", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.serverThread = null;
|
this.serverThread = null;
|
||||||
|
|
Loading…
Reference in a new issue