Skip to content

Commit

Permalink
logging(search): log level highlight value urn detection (#9262)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker authored Nov 17, 2023
1 parent bc89a1c commit 2b0811b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static List<MatchedField> getMatchedFieldEntry(List<com.linkedin.metadata
Urn urn = Urn.createFromString(field.getValue());
matchedField.setEntity(UrnToEntityMapper.map(urn));
} catch (URISyntaxException e) {
log.warn("Failed to create urn from MatchedField value: {}", field.getValue(), e);
log.debug("Failed to create urn from MatchedField value: {}", field.getValue());
}
}
return matchedField;
Expand Down

0 comments on commit 2b0811b

Please sign in to comment.