You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2020/05/07 20:20:27 UTC

[hbase] branch master updated: HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM

This is an automated email from the ASF dual-hosted git repository.

ndimiduk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 0e81ab0  HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM
0e81ab0 is described below

commit 0e81ab08b9d1e1327625fb068111261edce94e41
Author: Nick Dimiduk <nd...@apache.org>
AuthorDate: Tue May 5 15:15:18 2020 -0700

    HBASE-24295 [Chaos Monkey] abstract logging through the class hierarchy ; ADDENDUM
    
    Signed-off-by: Jan Hentschel <ja...@ultratendency.com>
---
 .../apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
index 9ce9056..d516129 100644
--- a/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
+++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RestartActiveMasterAction.java
@@ -26,7 +26,7 @@ import org.slf4j.LoggerFactory;
 * Action that tries to restart the active master.
 */
 public class RestartActiveMasterAction extends RestartActionBaseAction {
-  private static final Logger LOG = LoggerFactory.getLogger(RestartActionBaseAction.class);
+  private static final Logger LOG = LoggerFactory.getLogger(RestartActiveMasterAction.class);
 
   public RestartActiveMasterAction(long sleepTime) {
     super(sleepTime);