Remove a printStackTrace for an exception that is also logged. Produces noise on console

This commit is contained in:
Daniel Kulp 2016-01-27 10:06:36 -05:00
parent acbe31fcb5
commit a772b0ef72
1 changed files with 0 additions and 1 deletions

View File

@ -239,7 +239,6 @@ public class TransportConnection implements Connection, Task, CommandVisitor {
}
if (!stopping.get() && !pendingStop) {
transportException.set(e);
e.printStackTrace();
if (TRANSPORTLOG.isDebugEnabled()) {
TRANSPORTLOG.debug(this + " failed: " + e, e);
} else if (TRANSPORTLOG.isWarnEnabled() && !expected(e)) {