javeme commented on code in PR #1858:
URL:
https://github.com/apache/incubator-hugegraph/pull/1858#discussion_r865565838
##########
hugegraph-dist/src/main/java/com/baidu/hugegraph/cmd/StoreDumper.java:
##########
@@ -54,12 +54,12 @@ public void dump(HugeType table, long offset, long limit) {
for (long i = 0; i < offset && rs.hasNext(); i++) {
rs.next();
}
- String title = String.format("Dump table %s (offset %d limit %d):",
- table, offset, limit);
- LOG.info("title : {}",title);
+
+ LOG.info("Dump table %s (offset {} limit {}):", table, offset, limit);
+
for (long i = 0; i < limit && rs.hasNext(); i++) {
BackendEntry entry = rs.next();
- LOG.info("entry : {}",entry);
+ LOG.info("{}",entry);
Review Comment:
expect a space after ","
--
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]