diff --git a/server/core/reasoner/service/src/main/java/com/antgroup/openspg/server/core/reasoner/service/impl/Utils.java b/server/core/reasoner/service/src/main/java/com/antgroup/openspg/server/core/reasoner/service/impl/Utils.java index 954d4a243..f8f20b9e3 100644 --- a/server/core/reasoner/service/src/main/java/com/antgroup/openspg/server/core/reasoner/service/impl/Utils.java +++ b/server/core/reasoner/service/src/main/java/com/antgroup/openspg/server/core/reasoner/service/impl/Utils.java @@ -42,7 +42,7 @@ public static List getAllRdfEntity( IVertex vertex = graphState.getVertex(id, null, null); if (null != vertex && null != vertex.getValue()) { // 提取属性 - log.info("vertex_property,{}", vertex); + log.debug("vertex_property,{}", vertex); for (String propertyName : vertex.getValue().getKeySet()) { Object pValue = vertex.getValue().get(propertyName); if (null == pValue || propertyName.startsWith("_")) { @@ -80,7 +80,7 @@ public static List getAllRdfEntity( continue; } SPO spo = new SPO(edge.getType()); - log.info("TargetRdfProperty,id={},,edgeType={}", id, edge.getType()); + log.debug("TargetRdfProperty,id={},,edgeType={}", id, edge.getType()); LinkedUdtfResult udtfRes = new LinkedUdtfResult(); udtfRes.setEdgeType(spo.getP()); udtfRes.getTargetVertexIdList().add(String.valueOf(toIdObj));