We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe304a commit ac020bcCopy full SHA for ac020bc
core/src/main/java/org/testcontainers/containers/GenericContainer.java
@@ -421,12 +421,10 @@ private void tryStart(Instant startedAt) {
421
if (!reused) {
422
containerIsCreated(containerId);
423
424
- logger().info("Starting container with ID: {}", containerId);
+ logger().info("Container {} is starting: {}", dockerImageName, containerId);
425
dockerClient.startContainerCmd(containerId).exec();
426
}
427
428
- logger().info("Container {} is starting: {}", dockerImageName, containerId);
429
-
430
// For all registered output consumers, start following as close to container startup as possible
431
this.logConsumers.forEach(this::followOutput);
432
0 commit comments