This is an automated email from the ASF dual-hosted git repository.
madhan pushed a commit to branch atlas-2.5
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/atlas-2.5 by this push:
new 64c2d26e6 ATLAS-5035: reduce info level logs during classification
updates (#351)
64c2d26e6 is described below
commit 64c2d26e66849358c3dc463df7c081cc3bf71dc9
Author: Madhan Neethiraj <[email protected]>
AuthorDate: Sun May 18 23:09:21 2025 -0700
ATLAS-5035: reduce info level logs during classification updates (#351)
(cherry picked from commit fd29db13ca58b8d33b69de6860b895796a9873ed)
---
.../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);
}
}
}