Skip to content

Commit fd29db1

Browse files
authored
ATLAS-5035: reduce info level logs during classification updates (#351)
1 parent a2cea6e commit fd29db1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public String getClassificationTextForEntity(AtlasEntity entity) throws AtlasBas
162162
ret = sb.toString();
163163
}
164164

165-
LOG.info("FullTextMapperV2.getClassificationTextForEntity({}): {}", entity != null ? entity.getGuid() : "null", ret);
165+
LOG.debug("FullTextMapperV2.getClassificationTextForEntity({}): {}", entity != null ? entity.getGuid() : "null", ret);
166166

167167
return ret;
168168
}

repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2801,7 +2801,7 @@ private List<AtlasEntity> updateClassificationText(AtlasClassification classific
28012801
vertex.setProperty(CLASSIFICATION_TEXT_KEY, classificationTextForEntity);
28022802
propagatedEntities.add(entity);
28032803

2804-
LOG.info("updateClassificationText: {}: {}", classification.getTypeName(), classificationTextForEntity);
2804+
LOG.debug("updateClassificationText: {}: {}", classification.getTypeName(), classificationTextForEntity);
28052805
}
28062806
}
28072807
}

0 commit comments

Comments
 (0)