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:
parent
b1a00be1bc
commit
8f6d6b9ec3
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue