Browse Source

Minor improvement

main
M66B 6 years ago
parent
commit
419a6e6f07
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/src/main/java/eu/faircode/email/ServiceSynchronize.java

+ 2
- 2
app/src/main/java/eu/faircode/email/ServiceSynchronize.java View File

@ -606,7 +606,7 @@ public class ServiceSynchronize extends LifecycleService {
synchronizeMessages(account, folder, ifolder, state);
} catch (InterruptedException ex) {
Log.w(Helper.TAG, folder.name + " noop " + ex.getMessage());
Log.w(Helper.TAG, folder.name + " noop " + ex.toString());
}
}
} catch (Throwable ex) {
@ -800,7 +800,7 @@ public class ServiceSynchronize extends LifecycleService {
if (backoff < CONNECT_BACKOFF_MAX)
backoff *= 2;
} catch (InterruptedException ex) {
Log.w(Helper.TAG, account.name + " backoff " + ex.getMessage());
Log.w(Helper.TAG, account.name + " backoff " + ex.toString());
}
}
}


Loading…
Cancel
Save