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:
Michael Stack 2008-05-27 20:26:44 +00:00
parent c37590cd99
commit 6829ba8a01
2 changed files with 3 additions and 1 deletions

View File

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

View File

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