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

boglesby 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 e82693f  GEODE-6287: Removed inadvertent log messages
e82693f is described below

commit e82693fc4a7e65529c825e48e65fea4a5bc15fff
Author: Barry Oglesby <[email protected]>
AuthorDate: Mon Jan 28 14:26:29 2019 -0800

    GEODE-6287: Removed inadvertent log messages
---
 .../src/main/java/org/apache/geode/internal/cache/FilterProfile.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/FilterProfile.java 
b/geode-core/src/main/java/org/apache/geode/internal/cache/FilterProfile.java
index afe292d..51e5210 100755
--- 
a/geode-core/src/main/java/org/apache/geode/internal/cache/FilterProfile.java
+++ 
b/geode-core/src/main/java/org/apache/geode/internal/cache/FilterProfile.java
@@ -2050,7 +2050,6 @@ public class FilterProfile implements 
DataSerializableFixedID {
               this.hasLongID = true;
             }
             result = nextID++;
-            logger.warn("XXX IDMap.getWireID about to put realId=" + realId, 
new Exception());
             this.realIDs.put(realId, result);
             this.wireIDs.put(result, realId);
           }
@@ -2105,8 +2104,6 @@ public class FilterProfile implements 
DataSerializableFixedID {
      * remove the mapping for the given proxy ID
      */
     void removeIDMapping(Object clientId) {
-      logger.warn("XXX IDMap.removeIDMapping about to remove clientId=" + 
clientId,
-          new Exception());
       Long mappedId = this.realIDs.remove(clientId);
       if (mappedId != null) {
         this.wireIDs.remove(mappedId);

Reply via email to