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:
jxiang 2012-07-22 21:39:08 +00:00
parent c687f84c10
commit 675f83cb8c
1 changed files with 1 additions and 1 deletions

View File

@ -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;