1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 15:11:03 +00:00

Reduced logging

This commit is contained in:
M66B 2021-04-06 17:33:51 +02:00
parent 30bcae01e3
commit 2400d329cf
2 changed files with 3 additions and 3 deletions

View file

@ -315,7 +315,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
if (host != null)
puny = IDN.toASCII(host, IDN.ALLOW_UNASSIGNED);
} catch (Throwable ex) {
Log.w(ex);
Log.i(ex);
puny = host;
}

View file

@ -1582,7 +1582,7 @@ public class MessageHelper {
try {
user = IDN.toASCII(user, IDN.ALLOW_UNASSIGNED);
} catch (Throwable ex) {
Log.w(ex);
Log.i(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.w(ex);
Log.i(ex);
}
email = user + '@' + TextUtils.join(".", parts);