mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Reduced logging
This commit is contained in:
parent
30bcae01e3
commit
2400d329cf
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue