Skip to content

Commit

Permalink
Add debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Dec 6, 2024
1 parent 5b6710f commit 5b1e8f3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions compiler/core/src/zserio/tools/ExtensionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ private ClassLoader getClassLoader()
{
for (File file : fileList)
{
System.out.println("Found file: " + file);
if (isFileZserioExtension(file))
{
urlArray.add(new URI("file:" + file.getPath()).toURL());
Expand Down Expand Up @@ -212,6 +213,7 @@ private List<URL> getDependentJarsFromManifest(File file)
for (String classPath : classPaths.split("\\s+"))
{
final File dependentJarFile = new File(parentFile, classPath);
System.out.println("Found dependent file: " + dependentJarFile);
dependentJars.add(dependentJarFile.toURI().toURL());
}
}
Expand Down

0 comments on commit 5b1e8f3

Please sign in to comment.