HBASE-6440 SplitLogManager - log the exception when failed to finish split log file
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1364435 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c687f84c10
commit
675f83cb8c
|
@ -142,7 +142,7 @@ public class SplitLogManager extends ZooKeeperListener {
|
||||||
try {
|
try {
|
||||||
HLogSplitter.finishSplitLogFile(logfile, conf);
|
HLogSplitter.finishSplitLogFile(logfile, conf);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LOG.warn("Could not finish splitting of log file " + logfile);
|
LOG.warn("Could not finish splitting of log file " + logfile, e);
|
||||||
return Status.ERR;
|
return Status.ERR;
|
||||||
}
|
}
|
||||||
return Status.DONE;
|
return Status.DONE;
|
||||||
|
|
Loading…
Reference in New Issue