Skip to content

Commit

Permalink
Lower logs for bad mail address
Browse files Browse the repository at this point in the history
  • Loading branch information
chibenwa authored and quantranhong1999 committed Dec 8, 2024
1 parent 0202e07 commit 344f612
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public JCardObject deserialize(JsonParser p, DeserializationContext ctxt)
try {
return Optional.of(new MailAddress(email));
} catch (AddressException e) {
LOGGER.error("Invalid contact mail address '{}' found in JCard Object", email, e);
LOGGER.info("Invalid contact mail address '{}' found in JCard Object", email);
return Optional.empty();
}
});
Expand Down

0 comments on commit 344f612

Please sign in to comment.