change log level for 'ontology prefix not found' message to debug NIHVIVO-3237

This commit is contained in:
stellamit 2011-10-24 18:55:41 +00:00
parent 56b938ca59
commit 7d5a413c15

View file

@ -39,7 +39,7 @@ public class JenaOutputUtils {
prefix = ontology.getPrefix(); prefix = ontology.getPrefix();
if (prefix == null || prefix.isEmpty()) { if (prefix == null || prefix.isEmpty()) {
log.info("no prefix found for namespace: " + namespace); log.debug("no prefix found for namespace: " + namespace);
continue; continue;
} }