Skip to content

Commit

Permalink
Fix logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Oct 16, 2023
1 parent 4e38b13 commit 399bb7c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ public EclipsePythonProjectTensorAnalysisEngine(IProject project) {
this.project = project;
IPath projectPath = getPath(project);
Module dirModule = new EclipseSourceDirectoryTreeModule(projectPath, null, ".py");
LOG.info("Creating engine from: " + dirModule);
LOG.info("Creating engine from: " + dirModule + ".");

this.setModuleFiles(Collections.singleton(dirModule));

for (Iterator<? extends ModuleEntry> entries = dirModule.getEntries(); entries.hasNext();) {
ModuleEntry entry = entries.next();
LOG.info("Found entry: " + entry);
LOG.info("Found entry: " + entry + ".");
}
}

Expand Down

0 comments on commit 399bb7c

Please sign in to comment.