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 7C858200D02 for ; Sat, 19 Aug 2017 02:10:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7B31F16DA46; Sat, 19 Aug 2017 00:10:03 +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 69BC016DA1C for ; Sat, 19 Aug 2017 02:10:02 +0200 (CEST) Received: (qmail 13425 invoked by uid 500); 19 Aug 2017 00:10:00 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 10834 invoked by uid 99); 19 Aug 2017 00:09:57 -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; Sat, 19 Aug 2017 00:09:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4C31CF5EE6; Sat, 19 Aug 2017 00:09:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.apache.org Date: Sat, 19 Aug 2017 00:10:19 -0000 Message-Id: <9ae43fb8c1ee4bde8dc2ed57c24440e7@git.apache.org> In-Reply-To: <6e4e5d1a1a36418e9f8183a716e780b7@git.apache.org> References: <6e4e5d1a1a36418e9f8183a716e780b7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [24/51] [abbrv] geode git commit: GEODE-3055: change the error message's log level from info to debug. archived-at: Sat, 19 Aug 2017 00:10:03 -0000 GEODE-3055: change the error message's log level from info to debug. Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/2f61dd60 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/2f61dd60 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/2f61dd60 Branch: refs/heads/feature/GEODE-1279 Commit: 2f61dd600eec36f2588ec82a7cfdf1b6e27057f9 Parents: 91430e1 Author: zhouxh Authored: Wed Aug 16 16:18:36 2017 -0700 Committer: zhouxh Committed: Wed Aug 16 16:19:38 2017 -0700 ---------------------------------------------------------------------- .../geode/internal/cache/PartitionedRegionDataStore.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/2f61dd60/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java index 95e6598..893ca6b 100644 --- a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java +++ b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java @@ -500,10 +500,12 @@ public class PartitionedRegionDataStore implements HasCachePerfStats { boolean isLeader = leader.equals(this.partitionedRegion); if (!isLeader) { leader.getDataStore().removeBucket(possiblyFreeBucketId, true); - logger.info( - "For bucket " + possiblyFreeBucketId + ", failed to create cololcated child bucket for " - + this.partitionedRegion.getFullPath() + ", removed leader region " - + leader.getFullPath() + " bucket."); + if (isDebugEnabled) { + logger.debug("For bucket " + possiblyFreeBucketId + + ", failed to create cololcated child bucket for " + + this.partitionedRegion.getFullPath() + ", removed leader region " + + leader.getFullPath() + " bucket."); + } } throw validationException; } finally {