Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  Make loggers private

Change-Id: I2ebbad6da3509e2d62e8fb48ebba6d0a2caf4b7f
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/PushResultProcessing.java b/src/main/java/com/googlesource/gerrit/plugins/replication/PushResultProcessing.java
index 654cd1f..c71a792 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/PushResultProcessing.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/PushResultProcessing.java
@@ -159,7 +159,7 @@
   }
 
   public static class GitUpdateProcessing extends PushResultProcessing {
-    static final Logger log = LoggerFactory.getLogger(GitUpdateProcessing.class);
+    private static final Logger log = LoggerFactory.getLogger(GitUpdateProcessing.class);
 
     private final EventDispatcher dispatcher;
 
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationFileBasedConfig.java b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationFileBasedConfig.java
index bec4f20..ee1f16d 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationFileBasedConfig.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationFileBasedConfig.java
@@ -40,7 +40,7 @@
 
 @Singleton
 public class ReplicationFileBasedConfig implements ReplicationConfig {
-  static final Logger log = LoggerFactory.getLogger(ReplicationFileBasedConfig.class);
+  private static final Logger log = LoggerFactory.getLogger(ReplicationFileBasedConfig.class);
   private List<Destination> destinations;
   private Path cfgPath;
   private boolean replicateAllOnPluginStart;