Do not print stacktrace on TransferServer shutdown()

This commit is contained in:
Tobias Eidelpes 2020-11-18 10:41:39 +01:00
parent ecd9ca5af5
commit 8091a763ad

View File

@ -102,7 +102,6 @@ public class ClientConnection implements Runnable {
shutdown(); shutdown();
} catch (IOException e) { } catch (IOException e) {
logger.severe("Failed to get IO-Stream"); logger.severe("Failed to get IO-Stream");
e.printStackTrace();
shutdown(); shutdown();
} }
} }