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

madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new fd29db13c ATLAS-5035: reduce info level logs during classification 
updates (#351)
fd29db13c is described below

commit fd29db13ca58b8d33b69de6860b895796a9873ed
Author: Madhan Neethiraj <mad...@apache.org>
AuthorDate: Sun May 18 23:09:21 2025 -0700

    ATLAS-5035: reduce info level logs during classification updates (#351)
---
 .../main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java   | 2 +-
 .../org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
 
b/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
index 3b3889123..501d652fa 100644
--- 
a/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
+++ 
b/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
@@ -162,7 +162,7 @@ public class FullTextMapperV2 implements IFullTextMapper {
             ret = sb.toString();
         }
 
-        LOG.info("FullTextMapperV2.getClassificationTextForEntity({}): {}", 
entity != null ? entity.getGuid() : "null", ret);
+        LOG.debug("FullTextMapperV2.getClassificationTextForEntity({}): {}", 
entity != null ? entity.getGuid() : "null", ret);
 
         return ret;
     }
diff --git 
a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java
 
b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java
index 5cd382817..02f86866f 100644
--- 
a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java
+++ 
b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java
@@ -2801,7 +2801,7 @@ public class EntityGraphMapper {
                     vertex.setProperty(CLASSIFICATION_TEXT_KEY, 
classificationTextForEntity);
                     propagatedEntities.add(entity);
 
-                    LOG.info("updateClassificationText: {}: {}", 
classification.getTypeName(), classificationTextForEntity);
+                    LOG.debug("updateClassificationText: {}: {}", 
classification.getTypeName(), classificationTextForEntity);
                 }
             }
         }

Reply via email to