package test import ( "testing" "github.com/testcontainers/testcontainers-go" ) type LogConsumer struct { t *testing.T } func (lc *LogConsumer) Accept(l testcontainers.Log) { content := string(l.Content) lc.t.Logf("%s", content) }