From commits-return-22084-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Sun Sep 9 04:47:01 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id C2AF418077A for ; Sun, 9 Sep 2018 04:47:00 +0200 (CEST) Received: (qmail 11647 invoked by uid 500); 9 Sep 2018 02:46:59 -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 11634 invoked by uid 99); 9 Sep 2018 02:46:59 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Sep 2018 02:46:59 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3D6EF82A57; Sun, 9 Sep 2018 02:46:59 +0000 (UTC) Date: Sun, 09 Sep 2018 02:46:59 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch 1.9 updated: Use slf4j syntax for key in log message MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153646121915.557.5875138883479866061@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/1.9 X-Git-Reftype: branch X-Git-Oldrev: 96e8828fd48019b1af50bb48c2c0d59da7fd3acb X-Git-Newrev: 25472ae0db09befece0b24ae15bc187de77881cf X-Git-Rev: 25472ae0db09befece0b24ae15bc187de77881cf X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch 1.9 in repository https://gitbox.apache.org/repos/asf/accumulo.git The following commit(s) were added to refs/heads/1.9 by this push: new 25472ae Use slf4j syntax for key in log message 25472ae is described below commit 25472ae0db09befece0b24ae15bc187de77881cf Author: Christopher Tubbs AuthorDate: Sat Sep 8 22:14:21 2018 -0400 Use slf4j syntax for key in log message --- .../org/apache/accumulo/core/iterators/system/VisibilityFilter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/iterators/system/VisibilityFilter.java b/core/src/main/java/org/apache/accumulo/core/iterators/system/VisibilityFilter.java index 23e8241..4240ea3 100644 --- a/core/src/main/java/org/apache/accumulo/core/iterators/system/VisibilityFilter.java +++ b/core/src/main/java/org/apache/accumulo/core/iterators/system/VisibilityFilter.java @@ -73,10 +73,10 @@ public class VisibilityFilter extends Filter { cache.put(testVis, bb); return bb; } catch (VisibilityParseException e) { - log.error("VisibilityParseException with visibility of Key: " + k, e); + log.error("VisibilityParseException with visibility of Key: {}", k, e); return false; } catch (BadArgumentException e) { - log.error("BadArgumentException with visibility of Key: " + k, e); + log.error("BadArgumentException with visibility of Key: {}", k, e); return false; } }