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>
(cherry picked from commit b8558d30d0)
This commit is contained in:
Kerasone 2022-06-24 01:11:32 +08:00 committed by Pankaj
parent c74bf8b6e2
commit d129b56f26
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;
}
}