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 5596e2e commit cf267e2Copy full SHA for cf267e2
containers/ftp.go
@@ -38,7 +38,8 @@ func NewFTPTestContainer(ctx context.Context, t *testing.T) *FTPTestContainer {
38
fixedHostControlPort = "2121"
39
)
40
41
- testcontainers.Logger = testcontainers.TestLogger(t)
+ // Set up logging for testcontainers if the appropriate API is available
42
+ t.Logf("Setting up FTP test container")
43
44
pasvPortRangeContainer := fmt.Sprintf("%s-%s", pasvMinPort, pasvMaxPort)
45
pasvPortRangeHost := fmt.Sprintf("%s-%s", pasvMinPort, pasvMaxPort) // map 1:1
0 commit comments