Reduce logging

This commit is contained in:
M66B
2020-08-29 20:10:31 +02:00
parent 8644c75e19
commit f58a1ce7ed

View File

@@ -4156,7 +4156,8 @@ class Core {
// https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.State.html
Thread.State state = thread.getState();
if (thread.isAlive()) {
Log.e("Join " + name + " failed state=" + state + " interrupted=" + interrupted);
if (interrupted)
Log.e("Join " + name + " failed state=" + state + " interrupted=" + interrupted);
if (interrupted)
joined = true; // give up
else {