You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2016/08/26 17:25:10 UTC

[2/6] accumulo git commit: ACCUMULO-4414 Decrease log level on vestigal debug information

ACCUMULO-4414 Decrease log level on vestigal debug information


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/40d5a722
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/40d5a722
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/40d5a722

Branch: refs/heads/1.8
Commit: 40d5a722b3346f96ed6f982724513e0f3fa8c87f
Parents: 371db68
Author: Josh Elser <el...@apache.org>
Authored: Thu Aug 25 14:12:49 2016 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu Aug 25 14:12:49 2016 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/master/replication/WorkMaker.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/40d5a722/server/master/src/main/java/org/apache/accumulo/master/replication/WorkMaker.java
----------------------------------------------------------------------
diff --git a/server/master/src/main/java/org/apache/accumulo/master/replication/WorkMaker.java b/server/master/src/main/java/org/apache/accumulo/master/replication/WorkMaker.java
index 0333c5d..e8c3ca7 100644
--- a/server/master/src/main/java/org/apache/accumulo/master/replication/WorkMaker.java
+++ b/server/master/src/main/java/org/apache/accumulo/master/replication/WorkMaker.java
@@ -66,7 +66,7 @@ public class WorkMaker {
 
   public void run() {
     if (!ReplicationTable.isOnline(conn)) {
-      log.info("Replication table is not yet online");
+      log.debug("Replication table is not yet online");
       return;
     }
 
@@ -94,7 +94,7 @@ public class WorkMaker {
         // Extract the useful bits from the status key
         ReplicationSchema.StatusSection.getFile(entry.getKey(), file);
         ReplicationSchema.StatusSection.getTableId(entry.getKey(), tableId);
-        log.info("Processing replication status record for " + file + " on table " + tableId);
+        log.debug("Processing replication status record for " + file + " on table " + tableId);
 
         Status status;
         try {