We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6710f commit 5b1e8f3Copy full SHA for 5b1e8f3
compiler/core/src/zserio/tools/ExtensionManager.java
@@ -120,6 +120,7 @@ private ClassLoader getClassLoader()
120
{
121
for (File file : fileList)
122
123
+ System.out.println("Found file: " + file);
124
if (isFileZserioExtension(file))
125
126
urlArray.add(new URI("file:" + file.getPath()).toURL());
@@ -212,6 +213,7 @@ private List<URL> getDependentJarsFromManifest(File file)
212
213
for (String classPath : classPaths.split("\\s+"))
214
215
final File dependentJarFile = new File(parentFile, classPath);
216
+ System.out.println("Found dependent file: " + dependentJarFile);
217
dependentJars.add(dependentJarFile.toURI().toURL());
218
}
219
0 commit comments