HBASE-8570 CompactSplitThread logs a CompactSplitThread but it does not have a toString

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1486104 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-05-24 16:17:24 +00:00
parent 65e1acd7a1
commit 12f4d3d3f0
1 changed files with 5 additions and 0 deletions

View File

@ -364,6 +364,11 @@ public class CompactSplitThread implements CompactionRequestor {
this.region = region;
this.compaction = compaction;
}
@Override
public String toString() {
return "Request = " + compaction.getRequest();
}
@Override
public void run() {