Skip to content

Commit 8540905

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 9a194e9 commit 8540905

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

operator-framework/src/test/java/io/javaoperatorsdk/operator/baseapi/performance/SimplePerformanceTestIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import java.io.File;
1919
import java.io.IOException;
20+
import java.nio.file.Files;
2021
import java.util.ArrayList;
2122
import java.util.HashMap;
2223
import java.util.List;
@@ -108,6 +109,7 @@ private Map<String, Object> getRunProperties() {
108109
try {
109110
File runProperties = new File("../run-properties.json");
110111
if (runProperties.exists()) {
112+
log.debug("Run properties: {}", Files.readString(runProperties.toPath()));
111113
return objectMapper.readValue(runProperties, HashMap.class);
112114
} else {
113115
log.warn("No run properties file found");

0 commit comments

Comments
 (0)