diff --git a/testing/trino-product-tests-launcher/src/main/java/io/trino/tests/product/launcher/cli/TestRun.java b/testing/trino-product-tests-launcher/src/main/java/io/trino/tests/product/launcher/cli/TestRun.java index e11d4630206b2..b9295b8b0dae0 100644 --- a/testing/trino-product-tests-launcher/src/main/java/io/trino/tests/product/launcher/cli/TestRun.java +++ b/testing/trino-product-tests-launcher/src/main/java/io/trino/tests/product/launcher/cli/TestRun.java @@ -203,6 +203,7 @@ public Execution(EnvironmentFactory environmentFactory, EnvironmentOptions envir if (impactedFeaturesFile.isPresent()) { try { this.impactedFeatures = Optional.of(Files.asCharSource(impactedFeaturesFile.get(), StandardCharsets.UTF_8).readLines()); + log.info("Impacted features: %s", this.impactedFeatures); } catch (IOException e) { throw new RuntimeException(e);