This is an automated email from the ASF dual-hosted git repository.

jinmeiliao 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 954ccb5  GEODE-3974: revert a change to log the exception in the 
server logs (#1444)
954ccb5 is described below

commit 954ccb545d24a9c9a35cbd84023a4d7e07032de0
Author: jinmeiliao <jil...@pivotal.io>
AuthorDate: Tue Feb 13 11:15:38 2018 -0800

    GEODE-3974: revert a change to log the exception in the server logs (#1444)
---
 .../geode/internal/cache/MemberFunctionStreamingMessage.java       | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/MemberFunctionStreamingMessage.java
 
b/geode-core/src/main/java/org/apache/geode/internal/cache/MemberFunctionStreamingMessage.java
index 9428051..85ab9a8 100644
--- 
a/geode-core/src/main/java/org/apache/geode/internal/cache/MemberFunctionStreamingMessage.java
+++ 
b/geode-core/src/main/java/org/apache/geode/internal/cache/MemberFunctionStreamingMessage.java
@@ -215,9 +215,10 @@ public class MemberFunctionStreamingMessage extends 
DistributionMessage
       rex = new ReplyException(thr);
       replyWithException(dm, rex);
     } catch (Exception exception) {
-      logger.error("Exception occurred on remote member while executing 
Function: {}",
-          this.functionObject.getId(), exception);
-
+      if (logger.isDebugEnabled()) {
+        logger.debug("Exception occurred on remote member while executing 
Function: {}",
+            this.functionObject.getId(), exception);
+      }
       stats.endFunctionExecutionWithException(this.functionObject.hasResult());
       rex = new ReplyException(exception);
       replyWithException(dm, rex);

-- 
To stop receiving notification emails like this one, please contact
jinmeil...@apache.org.

Reply via email to