diff --git a/e2e/sedge/checks.go b/e2e/sedge/checks.go index 1b9bd5bd..084798ad 100644 --- a/e2e/sedge/checks.go +++ b/e2e/sedge/checks.go @@ -88,6 +88,8 @@ func checkContainerRunning(t *testing.T, containerNames ...string) { if containerName == "oncall_db_migration" { // For DB migration, we just check if it exists and completed status, err := dockerServiceManager.ContainerStatus(containerName) + logs, _ := dockerServiceManager.ContainerLogs(containerName, containerName) + t.Logf("Container logs: %s", logs) require.NoError(t, err) assert.Contains(t, []int{1, 6}, int(status), "%s container should be exited or created", containerName)