Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 88A5C200B72 for ; Fri, 26 Aug 2016 19:25:11 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 86C37160AB6; Fri, 26 Aug 2016 17:25:11 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B1460160AC3 for ; Fri, 26 Aug 2016 19:25:10 +0200 (CEST) Received: (qmail 89799 invoked by uid 500); 26 Aug 2016 17:25:10 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 89703 invoked by uid 99); 26 Aug 2016 17:25:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Aug 2016 17:25:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9FB09E08E8; Fri, 26 Aug 2016 17:25:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Fri, 26 Aug 2016 17:25:09 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/6] accumulo git commit: ACCUMULO-4414 Decrease log level on vestigal debug information archived-at: Fri, 26 Aug 2016 17:25:11 -0000 Repository: accumulo Updated Branches: refs/heads/1.7 371db68cf -> 40d5a722b refs/heads/1.8 def8f90ef -> d7c50d1fd refs/heads/master 20ed2b01f -> fd46656d9 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.7 Commit: 40d5a722b3346f96ed6f982724513e0f3fa8c87f Parents: 371db68 Author: Josh Elser Authored: Thu Aug 25 14:12:49 2016 -0400 Committer: Josh Elser 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 {