seagle-yuan commented on code in PR #1838:
URL:
https://github.com/apache/incubator-hugegraph/pull/1838#discussion_r853984467
##########
hugegraph-example/src/main/java/com/baidu/hugegraph/example/Example1.java:
##########
@@ -268,19 +270,19 @@ public static void testQuery(final HugeGraph graph) {
GraphTraversal<Vertex, Vertex> vertices = graph.traversal().V();
int size = vertices.toList().size();
assert size == 12;
- System.out.println(">>>> query all vertices: size=" + size);
+ LOG.info(">>>> query all vertices: size=" + size);
Review Comment:
we can use [LOG.info(">>>> query all vertices: size {}",size);]
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]