diff --git a/edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/wala/ml/EclipsePythonProjectTensorAnalysisEngine.java b/edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/wala/ml/EclipsePythonProjectTensorAnalysisEngine.java index 89a4557c4..d21e8159c 100644 --- a/edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/wala/ml/EclipsePythonProjectTensorAnalysisEngine.java +++ b/edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/wala/ml/EclipsePythonProjectTensorAnalysisEngine.java @@ -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 entries = dirModule.getEntries(); entries.hasNext();) { ModuleEntry entry = entries.next(); - LOG.info("Found entry: " + entry); + LOG.info("Found entry: " + entry + "."); } }