mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Reduced logging
This commit is contained in:
parent
5bcff21119
commit
2a5f1dde91
1 changed files with 2 additions and 2 deletions
|
@ -2089,7 +2089,7 @@ public class MessageHelper {
|
|||
MailTo.parse(unsubscribe);
|
||||
mailto = unsubscribe;
|
||||
} catch (Throwable ex) {
|
||||
Log.w(new Throwable(unsubscribe, ex));
|
||||
Log.i(new Throwable(unsubscribe, ex));
|
||||
}
|
||||
}
|
||||
} else if (Helper.EMAIL_ADDRESS.matcher(unsubscribe).matches())
|
||||
|
@ -2108,7 +2108,7 @@ public class MessageHelper {
|
|||
if (m.find())
|
||||
link = unsubscribe.substring(m.start(), m.end());
|
||||
else
|
||||
Log.w(new Throwable(unsubscribe));
|
||||
Log.i(new Throwable(unsubscribe));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue