[VIVO-1997] Log blank node deletion messages at DEBUG instead of WARN (#238)
* Log blank node deletion messages at debug level instead of warn. * Switch to more informative debug message about blank node deletion.
This commit is contained in:
parent
d21dc92b0b
commit
1720272155
1 changed files with 2 additions and 2 deletions
|
@ -201,8 +201,8 @@ public abstract class RDFServiceJena extends RDFServiceImpl implements RDFServic
|
|||
log.debug("blank node model size " + blankNodeModel.size());
|
||||
|
||||
if (blankNodeModel.size() == 1) {
|
||||
log.warn("Deleting single triple with blank node: " + blankNodeModel);
|
||||
log.warn("This likely indicates a problem; excessive data may be deleted.");
|
||||
log.debug("Deleting single triple with blank node: " + blankNodeModel);
|
||||
log.debug("This could result in the deletion of multiple triples if multiple blank nodes match the same triple pattern.");
|
||||
}
|
||||
|
||||
Query rootFinderQuery = QueryFactory.create(BNODE_ROOT_QUERY);
|
||||
|
|
Loading…
Add table
Reference in a new issue