Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.testcontainers.rabbitmq;

import com.github.dockerjava.api.command.InspectContainerResponse;
import lombok.extern.slf4j.Slf4j;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.containers.wait.strategy.Wait;
import org.testcontainers.utility.DockerImageName;
Expand All @@ -23,6 +24,7 @@
* <li>15672 (HTTP)</li>
* </ul>
*/
@Slf4j
public class RabbitMQContainer extends GenericContainer<RabbitMQContainer> {

/**
Expand Down Expand Up @@ -84,6 +86,7 @@ protected void containerIsStarted(InspectContainerResponse containerInfo) {
logger().error("Could not execute command {}: {}", command, e.getMessage());
}
});
log.info("Access to the RabbitMQ management UI: {}", getHttpsUrl());
}

/**
Expand Down