justinmclean commented on code in PR #6435:
URL: https://github.com/apache/gravitino/pull/6435#discussion_r1950194591


##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/TagEntity.java:
##########
@@ -130,7 +129,7 @@ public void handle() {
 
     String all = tagsToAdd.length == 0 ? "nothing" : String.join(",", 
tagsToAdd);
 
-    System.out.println(entity + " now tagged with " + all);
+    printResults(entity + " now tagged with " + all);

Review Comment:
   should be printInformation



##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/UntagEntity.java:
##########
@@ -132,10 +131,9 @@ public void handle() {
     }
 
     if (tags.length > 1) {
-      System.out.println(
-          entity + " removed tags " + String.join(",", tags) + " now tagged 
with " + all);
+      printResults(entity + " removed tags " + String.join(",", tags) + " now 
tagged with " + all);

Review Comment:
   should be printInformation



-- 
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: commits-unsubscr...@gravitino.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to