HBASE-27729. Missed one parameter when logging exception in StoreFileListFile. (#5114)

Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit 3c2c685892)
This commit is contained in:
slfan1989 2023-03-19 19:58:20 +08:00 committed by Duo Zhang
parent b1a00be1bc
commit 8f6d6b9ec3
1 changed files with 2 additions and 1 deletions

View File

@ -262,7 +262,8 @@ class StoreFileListFile {
} catch (IOException e) {
// we will create new file with overwrite = true, so not a big deal here, only for speed up
// loading as we do not need to read this file when loading
LOG.debug("Failed to delete old track file {}, ignoring the exception", e);
LOG.debug("Failed to delete old track file {}, ignoring the exception",
trackFiles[nextTrackFile], e);
}
}
}