From c6cb2fc1fd0d452628b4ef25a4247efc66560552 Mon Sep 17 00:00:00 2001 From: stellamit Date: Mon, 21 Nov 2011 15:03:07 +0000 Subject: [PATCH] improving warning message text --- .../cornell/mannlib/vitro/webapp/reasoner/SimpleReasoner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/reasoner/SimpleReasoner.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/reasoner/SimpleReasoner.java index d9c007b2f..ba21f65e9 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/reasoner/SimpleReasoner.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/reasoner/SimpleReasoner.java @@ -623,8 +623,8 @@ public class SimpleReasoner extends StatementListener { if ( !(stmt.getObject().asResource().getNameSpace()).equals(OWL.NS)) { if (!unknownTypes.contains(stmt.getObject().asResource().getURI())) { unknownTypes.add(stmt.getObject().asResource().getURI()); - log.warn("Didn't find the target class (the object of an added rdf:type statement) in the TBox: " + - (stmt.getObject().asResource()).getURI() + ". No mostSpecificType computation will be done based on type assertions of this type."); + log.warn("Didn't find the target class (the object of an asserted or inferred rdf:type statement) in the TBox: " + + (stmt.getObject().asResource()).getURI() + ". No mostSpecificType computation will be done based on " + (stmt.getObject().asResource()).getURI() + " type statements."); } } continue;