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>
This commit is contained in:
parent
d5c86243e1
commit
3c2c685892
|
@ -262,7 +262,8 @@ class StoreFileListFile {
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// we will create new file with overwrite = true, so not a big deal here, only for speed up
|
// 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
|
// 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