Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private static Map<String, String> resolvePrefixes(OWLOntologyManager ontologyMa
result.putAll(resolveOntologyPrefixes(o, config.getOntologyPrefixProperty(), config.getRemotePrefixResolver()));
});
result.putAll(resolvePrefixesFromPrefixMappingFile(config.getPrefixMappingFile()));
LOG.debug("Resolved prefix map: {}", result);
LOG.info("Resolved prefix map: {}", result);
return result;
}

Expand Down Expand Up @@ -119,7 +119,7 @@ private static Map<String, String> resolvePrefixesFromPrefixMappingFile(String m
}
final File file = new File(mappingFilePath);
try {
LOG.debug("Loading prefix mapping from file '{}'.", file);
LOG.info("Loading prefix mapping from file '{}'.", file);
final List<String> lines = Files.readAllLines(file.toPath(), StandardCharsets.UTF_8);
final Map<String, String> prefixMap = new HashMap<>(lines.size());
lines.stream().filter(line -> !line.isBlank()).forEach(line -> {
Expand Down