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 30F5F200D0A for ; Wed, 4 Oct 2017 23:38:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2F4D31609DD; Wed, 4 Oct 2017 21:38:12 +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 750831609D6 for ; Wed, 4 Oct 2017 23:38:11 +0200 (CEST) Received: (qmail 23938 invoked by uid 500); 4 Oct 2017 21:38:10 -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 23929 invoked by uid 99); 4 Oct 2017 21:38:10 -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; Wed, 04 Oct 2017 21:38:10 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DD11A816CF; Wed, 4 Oct 2017 21:38:08 +0000 (UTC) Date: Wed, 04 Oct 2017 21:38:08 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: GEODE-3750: Adding exception logging in auto reconnect MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <150715308812.13703.4654385746779559899@gitbox.apache.org> From: udo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: db4a493efc09600bf0a9778d5274c09b23b16644 X-Git-Newrev: bfad65a0c76f2e227a009c0dc28dbbff307e65b7 X-Git-Rev: bfad65a0c76f2e227a009c0dc28dbbff307e65b7 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Wed, 04 Oct 2017 21:38:12 -0000 This is an automated email from the ASF dual-hosted git repository. udo pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new bfad65a GEODE-3750: Adding exception logging in auto reconnect bfad65a is described below commit bfad65a0c76f2e227a009c0dc28dbbff307e65b7 Author: kohlmu-pivotal AuthorDate: Wed Oct 4 14:37:59 2017 -0700 GEODE-3750: Adding exception logging in auto reconnect --- .../apache/geode/distributed/internal/InternalDistributedSystem.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java index 80eefcf..eaf2bc3 100644 --- a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java +++ b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java @@ -2752,11 +2752,13 @@ public class InternalDistributedSystem extends DistributedSystem attemptingToReconnect = false; return; } + logger.warn("Caught SystemConnectException in reconnect", e); continue; } catch (GemFireConfigException e) { if (isDebugEnabled) { logger.debug("Attempt to reconnect failed with GemFireConfigException"); } + logger.warn("Caught GemFireConfigException in reconnect", e); continue; } catch (Exception ee) { logger.warn( -- To stop receiving notification emails like this one, please contact ['"commits@geode.apache.org" '].