HBASE-8600 Bunch of log lines from QosFunction: Marking normal priority after

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1485886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-05-23 22:31:01 +00:00
parent 8bc438abde
commit 61870830bf
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class QosFunction implements Function<Pair<RequestHeader, Message>, Integer> {
} catch (Exception ex) {
// Not good throwing an exception out of here, a runtime anyways. Let the query go into the
// server and have it throw the exception if still an issue. Just mark it normal priority.
if (LOG.isDebugEnabled()) LOG.debug("Marking normal priority after getting exception=" + ex);
if (LOG.isTraceEnabled()) LOG.trace("Marking normal priority after getting exception=" + ex);
return HConstants.NORMAL_QOS;
}