Skip to content

Commit

Permalink
Log exception on socket problems (#8055)
Browse files Browse the repository at this point in the history
Fixes #8054
  • Loading branch information
ciis0 authored Oct 22, 2024
1 parent 4f9594d commit f50e5c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected boolean test() {
.untilAsserted(() -> socket.connect(socketAddress, (int) timeout.toMillis()));
return true;
} catch (Exception e) {
log.warn("DOCKER_HOST {} is not listening", dockerHost);
log.warn("DOCKER_HOST {} is not listening", dockerHost, e);
return false;
}
}
Expand Down

0 comments on commit f50e5c3

Please sign in to comment.