Skip to content

Commit e0486ed

Browse files
adding log to debug java 21
Signed-off-by: Thomas Poignant <[email protected]>
1 parent c46e582 commit e0486ed

File tree

1 file changed

+1
-0
lines changed
  • providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/wasm

1 file changed

+1
-0
lines changed

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/wasm/EvaluationWasm.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ private File getWasmFile() throws WasmFileNotFound {
6868
}
6969
Path dirPath = Paths.get(directoryUrl.toURI());
7070
try (val files = Files.list(dirPath)) {
71+
System.out.println("Files in directory: " + files);
7172
return files
7273
.filter(path -> path.getFileName().toString().startsWith("gofeatureflag-evaluation")
7374
&& (path.toString().endsWith(".wasi") || path.toString().endsWith(".wasm")))

0 commit comments

Comments
 (0)