HBASE-641 Improve master split logging
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@660686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c37590cd99
commit
6829ba8a01
|
@ -23,6 +23,7 @@ Hbase Change Log
|
|||
hadoop-0.17.0 is released
|
||||
HBASE-638 Purge \r from src
|
||||
HBASE-644 DroppedSnapshotException but RegionServer doesn't restart
|
||||
HBASE-641 Improve master split logging
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-559 MR example job to count table rows
|
||||
|
|
|
@ -599,7 +599,8 @@ public class HLog implements HConstants {
|
|||
w.append(key, val);
|
||||
}
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Applied " + count + " total edits");
|
||||
LOG.debug("Applied " + count + " total edits from " +
|
||||
logfiles[i].getPath().toString());
|
||||
}
|
||||
} catch (IOException e) {
|
||||
e = RemoteExceptionHandler.checkIOException(e);
|
||||
|
|
Loading…
Reference in New Issue