Skip to content

Commit

Permalink
Merge pull request #3531 from atlanhq/hr-audit-listener-npe-fix-ssb-beta
Browse files Browse the repository at this point in the history
fixed logs, added missing variables
  • Loading branch information
hr2904 committed Sep 19, 2024
2 parents f958cab + b1c2e2b commit 47e737b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ private void getClassificationTextFromEntity(List<AtlasClassification> classific
Objects.isNull(classification) ||
Objects.isNull(entity.getGuid()) ||
Objects.isNull(classification.getEntityGuid())) {
LOG.info("Probable NPE prevented : Entity {}, classification : {}, entity : {}, entity.Guid : {}, classification.getEntityGuid : {}");
LOG.info("Probable NPE prevented : Entity {}, classification : {}, entity : {}, entity.Guid : {}, classification.getEntityGuid : {}", entity.toString(), classification.toString(), entity.getGuid(), classification.getEntityGuid());
continue;
}
if (entity.getGuid().equals(classification.getEntityGuid())) {
Expand Down

0 comments on commit 47e737b

Please sign in to comment.