Skip to content

Commit 22d038e

Browse files
committed
joined log statements
1 parent aec5c50 commit 22d038e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Transport/src/main/java/de/rub/nds/tlsattacker/transport/nonblocking/AcceptorCallable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ public Socket call() throws Exception {
3131
try {
3232
return serverSocket.accept();
3333
} catch (IOException ex) {
34-
LOGGER.warn("Could not open Accept connection!");
35-
LOGGER.debug(ex);
34+
LOGGER.warn("Could not open Accept connection!", ex);
3635
}
3736
return null;
3837
}

0 commit comments

Comments
 (0)