HBASE-7037 ReplicationPeer logs at WARN level aborting server instead of at FATAL

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1401563 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-10-24 06:09:06 +00:00
parent 08491e4f59
commit 47ae2df693
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class ReplicationPeer implements Abortable, Closeable {
@Override
public void abort(String why, Throwable e) {
LOG.warn("The ReplicationPeer coresponding to peer " + clusterKey
LOG.fatal("The ReplicationPeer coresponding to peer " + clusterKey
+ " was aborted for the following reason(s):" + why, e);
}