Skip to content

Commit 596e0c8

Browse files
committed
Log classpath and source files in JavaPlugin
1 parent d4255e5 commit 596e0c8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tmc-langs-java/src/main/java/fi/helsinki/cs/tmc/langs/java/AbstractJavaPlugin.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ public Optional<ExerciseDesc> scanExercise(Path path, String exerciseName) {
110110
stb.append(cp.toString());
111111
stb.append(":");
112112
}
113+
114+
log.info("Determined classpath as {}", stb.toString());
115+
log.info("Found following source files: {}", sourceFiles.toString());
116+
113117
TestScanner scanner = testScanner.get();
114118
scanner.setClassPath(stb.toString());
115119
for (File sourceFile : sourceFiles.getSources()) {

0 commit comments

Comments
 (0)