Skip to content

Commit

Permalink
java-cdk: fix ContainerFactory logging (#38074)
Browse files Browse the repository at this point in the history
  • Loading branch information
postamar authored May 8, 2024
1 parent 985c839 commit b421453
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ abstract class ContainerFactory<C : GenericContainer<*>> {
"testcontainer %s (%s[%s]):".formatted(
containerId!!.incrementAndGet(),
imageName,
StringUtils.join(containerModifiers, ",")
StringUtils.join(containerModifiers.map { it.name() }, ",")
)
)
.setPrefixColor(LoggingHelper.Color.RED_BACKGROUND)
Expand Down

0 comments on commit b421453

Please sign in to comment.