HBASE-27001 The deleted variable cannot be printed out (#4479)

* The deleted variable cannot be printed out, add it

Co-authored-by: selina.yan <selina.yan@huolala.cn>


Signed-off-by: Pankaj Kumar<pankajkumar@apache.org>
This commit is contained in:
Kerasone 2022-06-24 01:11:32 +08:00 committed by GitHub
parent e84cd3dd6a
commit b8558d30d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -529,7 +529,7 @@ public abstract class CleanerChore<T extends FileCleanerDelegate> extends Schedu
LOG.info("unexpected exception: ", e);
deleted = false;
}
LOG.trace("Finish deleting {} under {}, deleted=", type, dir, deleted);
LOG.trace("Finish deleting {} under {}, deleted = {}", type, dir, deleted);
return deleted;
}
}