smengcl commented on code in PR #8546:
URL: https://github.com/apache/ozone/pull/8546#discussion_r2134322264


##########
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/service/KeyDeletingService.java:
##########
@@ -323,8 +323,8 @@ public BackgroundTaskResult call() {
               SnapshotUtils.getSnapshotInfo(getOzoneManager(), 
snapshotChainManager, snapshotId);
           if (snapInfo != null) {
             if (snapInfo.isDeepCleaned()) {
-              LOG.info("Snapshot {} has already been deep cleaned. Skipping 
the snapshot in this iteration.",
-                  snapInfo.getSnapshotId());
+              LOG.info("Snapshot {} has already been deep cleaned. Skipping 
the snapshot in this iteration. " +
+                      "Snapshot name : {}", snapInfo.getSnapshotId(), 
snapInfo.getName());

Review Comment:
   ```suggestion
                 LOG.info("Snapshot '{}' ({}) has already been deep cleaned. 
Skipping the snapshot in this iteration.",
                     snapInfo.getName(), snapInfo.getSnapshotId());
   ```



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to