Reduced logging

This commit is contained in:
M66B
2021-04-06 08:06:44 +02:00
parent 75204208d0
commit eb07d8ea9a
2 changed files with 3 additions and 3 deletions

View File

@@ -1582,7 +1582,7 @@ public class MessageHelper {
try {
user = IDN.toASCII(user, IDN.ALLOW_UNASSIGNED);
} catch (Throwable ex) {
Log.e(ex);
Log.w(ex);
}
String[] parts = domain.split("\\.");
@@ -1590,7 +1590,7 @@ public class MessageHelper {
try {
parts[p] = IDN.toASCII(parts[p], IDN.ALLOW_UNASSIGNED);
} catch (Throwable ex) {
Log.e(ex);
Log.w(ex);
}
email = user + '@' + TextUtils.join(".", parts);