Return-Path: X-Original-To: apmail-nifi-commits-archive@minotaur.apache.org Delivered-To: apmail-nifi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 46CB617E9A for ; Mon, 2 Mar 2015 04:04:30 +0000 (UTC) Received: (qmail 92021 invoked by uid 500); 2 Mar 2015 04:04:14 -0000 Delivered-To: apmail-nifi-commits-archive@nifi.apache.org Received: (qmail 91934 invoked by uid 500); 2 Mar 2015 04:04:14 -0000 Mailing-List: contact commits-help@nifi.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nifi.incubator.apache.org Delivered-To: mailing list commits@nifi.incubator.apache.org Received: (qmail 91924 invoked by uid 99); 2 Mar 2015 04:04:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Mar 2015 04:04:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 02 Mar 2015 04:03:50 +0000 Received: (qmail 88542 invoked by uid 99); 2 Mar 2015 04:03:40 -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; Mon, 02 Mar 2015 04:03:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 80BBDE0FC2; Mon, 2 Mar 2015 04:03:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: joewitt@apache.org To: commits@nifi.incubator.apache.org Date: Mon, 02 Mar 2015 04:04:22 -0000 Message-Id: <701bc5a32bef4077848ecefe0a65ac37@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [43/50] [abbrv] incubator-nifi git commit: Removing extraneous logging statement. X-Virus-Checked: Checked by ClamAV on apache.org Removing extraneous logging statement. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/84602ca3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/84602ca3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/84602ca3 Branch: refs/heads/develop Commit: 84602ca3e9935da74788aa893998efd2685dc873 Parents: 4d3cff3 Author: Aldrin Piri Authored: Sun Mar 1 13:27:40 2015 -0500 Committer: Aldrin Piri Committed: Sun Mar 1 13:27:40 2015 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/nifi/processors/standard/SplitJson.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/84602ca3/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/SplitJson.java ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/SplitJson.java b/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/SplitJson.java index 8c7ae4d..59f4d71 100644 --- a/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/SplitJson.java +++ b/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/SplitJson.java @@ -131,7 +131,6 @@ public class SplitJson extends AbstractJsonPathProcessor { String jsonPathExpression = processContext.getProperty(ARRAY_JSON_PATH_EXPRESSION).getValue(); final JsonPath jsonPath = JSON_PATH_MAP.get(jsonPathExpression); - getLogger().info("Using value {} for split ", new Object[]{jsonPathExpression}); final List segments = new ArrayList<>();