From 7d5a413c15282da6214ffcd561ecc8f9c6bd9f3a Mon Sep 17 00:00:00 2001 From: stellamit Date: Mon, 24 Oct 2011 18:55:41 +0000 Subject: [PATCH] change log level for 'ontology prefix not found' message to debug NIHVIVO-3237 --- .../mannlib/vitro/webapp/utils/jena/JenaOutputUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/utils/jena/JenaOutputUtils.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/utils/jena/JenaOutputUtils.java index 0f4118131..5ff6e3c2e 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/utils/jena/JenaOutputUtils.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/utils/jena/JenaOutputUtils.java @@ -39,7 +39,7 @@ public class JenaOutputUtils { prefix = ontology.getPrefix(); if (prefix == null || prefix.isEmpty()) { - log.info("no prefix found for namespace: " + namespace); + log.debug("no prefix found for namespace: " + namespace); continue; }