Skip to content

Commit

Permalink
Reduced logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Sep 21, 2012
1 parent 2fe38d6 commit 3e637ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/lantern/LanternUtils.java
Expand Up @@ -1360,9 +1360,9 @@ public static void addToClosedBeta(final String to) {
public static boolean isNotJid(final String email) {
final boolean isEmail = !email.contains(".talk.google.com");
if (isEmail) {
LOG.info("Allowing email {}", email);
LOG.debug("Allowing email {}", email);
} else {
LOG.info("Is a JID {}", email);
LOG.debug("Is a JID {}", email);
}
return isEmail;
}
Expand Down

0 comments on commit 3e637ab

Please sign in to comment.