Remove DEBUG messages

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@690650 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-08-31 07:12:58 +00:00
parent f9e04bcf5d
commit 3e7dd73cd1
1 changed files with 0 additions and 1 deletions

View File

@ -1529,7 +1529,6 @@ public class HRegion implements HConstants {
List<HStoreKey> keys = store.getKeys(new HStoreKey(row, ts),
ALL_VERSIONS, now);
TreeMap<HStoreKey, byte []> edits = new TreeMap<HStoreKey, byte []>();
LOG.info("GETKEYS REMOVE " + keys);
for (HStoreKey key: keys) {
edits.put(key, HLogEdit.deleteBytes.get());
}