Skip to content

Commit 2f116fd

Browse files
committed
Fix log trace arguments
1 parent d23bc05 commit 2f116fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/bonigarcia/wdm/docker/DockerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ public String getBindPort(String containerId, String exposed)
307307
} else {
308308
try {
309309
log.trace("Port {} is not bindable in container {}",
310-
exposed + dockerImage);
310+
exposed, dockerImage);
311311
Thread.sleep(POLL_TIME_MSEC);
312312
} catch (InterruptedException e) {
313313
log.warn("Interrupted exception getting bind port", e);

0 commit comments

Comments
 (0)