Skip to content

Commit

Permalink
change log level to warning if input email is invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
ddhuy committed Dec 8, 2017
1 parent b001a77 commit 74e55d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static boolean isValidEmailFormat ( String email ) {
isValid = true;
} catch (AddressException ex) {
isValid = false;
logger.error("Email " + email + " is invalid");
logger.warn("Email " + email + " is invalid");
}
return isValid;
}
Expand Down

0 comments on commit 74e55d9

Please sign in to comment.