mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 01:06:04 +00:00
Reduce logging
This commit is contained in:
parent
6433ff0ebe
commit
d092785f26
1 changed files with 3 additions and 3 deletions
|
@ -370,7 +370,7 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
else
|
||||
action = account + "/" + folder;
|
||||
|
||||
EntityLog.log(this, action + "\n" + ex.toString() + "\n" + Log.getStackTraceString(ex));
|
||||
EntityLog.log(this, action + " " + Helper.formatThrowable(ex));
|
||||
|
||||
if (ex instanceof SendFailedException) {
|
||||
NotificationManager nm = getSystemService(NotificationManager.class);
|
||||
|
@ -1695,10 +1695,10 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
boolean joined = false;
|
||||
while (!joined)
|
||||
try {
|
||||
EntityLog.log(this, "Joining " + thread.getName());
|
||||
Log.i(Helper.TAG, "Joining " + thread.getName());
|
||||
thread.join();
|
||||
joined = true;
|
||||
EntityLog.log(this, "Joined " + thread.getName());
|
||||
Log.i(Helper.TAG, "Joined " + thread.getName());
|
||||
} catch (InterruptedException ex) {
|
||||
Log.w(Helper.TAG, thread.getName() + " join " + ex.toString());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue