HBASE-24470 : Add store file info when log meessages in HStore. (#1804)

Signed-off-by: binlijin <binlijin@gmail.com>
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
xincunSong 2020-05-29 21:28:57 +08:00 committed by Viraj Jasani
parent 136414dd72
commit 61fa21e657
No known key found for this signature in database
GPG Key ID: 3AE697641452FC5D
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ public class HStore implements Store {
try {
if (file != null) file.closeReader(evictOnClose);
} catch (IOException e) {
LOG.warn(e.getMessage());
LOG.warn("Could not close store file " + file, e);
}
}
throw ioe;