Skip to content

Commit e3c4c7e

Browse files
Minor change to logging
1 parent da74e5a commit e3c4c7e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/de/variantsync/evolution/io/data/VariabilityDatasetLoader.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,9 @@ private String[] loadParentIds(final Path p, final String commitId) {
173173
Logger.info("Unzipping PARENTS.txt");
174174
new ZipFile(zipFile).extractFile(commitId + "/PARENTS.txt", String.valueOf(resolvePathToCommitOutputDir(p, commitId).getParent()));
175175
} catch (final ZipException e) {
176-
Logger.error("Was not able to unzip commit data.", e);
176+
// Not all commits have a ZIP file and not all commits with a ZIP file have a PARENTS.txt. So this is
177+
// an expected exception
178+
Logger.debug("Was not able to unzip commit data." + e.getMessage());
177179
}
178180
}
179181
}

0 commit comments

Comments
 (0)