justinmclean commented on code in PR #6435:
URL: https://github.com/apache/gravitino/pull/6435#discussion_r1950194762
##########
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);
} else {
- System.out.println(entity + " removed tag " + tags[0].toString() + " now
tagged with " + all);
+ printResults(entity + " removed tag " + tags[0].toString() + " 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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]