Reduced logging

This commit is contained in:
M66B 2022-05-11 14:39:49 +02:00
parent c9dbe81961
commit d5b45673d9
1 changed files with 3 additions and 2 deletions

View File

@ -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 {