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
c9dbe81961
commit
d5b45673d9
1 changed files with 3 additions and 2 deletions
|
@ -5976,8 +5976,9 @@ class Core {
|
|||
if (thread.isAlive() &&
|
||||
state != Thread.State.NEW &&
|
||||
state != Thread.State.TERMINATED) {
|
||||
Log.e("Join " + name + " failed" +
|
||||
" state=" + state + " interrupted=" + interrupted);
|
||||
if (interrupted)
|
||||
Log.e("Join " + name + " failed" +
|
||||
" state=" + state + " interrupted=" + interrupted);
|
||||
if (interrupted)
|
||||
joined = true; // giving up
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue