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 <[email protected]>
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
['"[email protected]" <[email protected]>'].