Skip to content

Commit

Permalink
change rdf expand log to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
royzhao committed Dec 21, 2024
1 parent b05c57b commit 5c6d9b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static List<LinkedUdtfResult> getAllRdfEntity(
IVertex<IVertexId, IProperty> 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("_")) {
Expand Down Expand Up @@ -80,7 +80,7 @@ public static List<LinkedUdtfResult> 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));
Expand Down

0 comments on commit 5c6d9b9

Please sign in to comment.