Reduced logging

pull/184/head
M66B 5 years ago
parent 86d0b12de4
commit 2e8db5f63c

@ -766,17 +766,12 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
long account = Long.parseLong(action.split(":")[1]); long account = Long.parseLong(action.split(":")[1]);
Core.State state = coreStates.get(account); Core.State state = coreStates.get(account);
boolean ok = false;
if (state == null) if (state == null)
EntityLog.log(this, "### wakeup missing account=" + account); EntityLog.log(this, "### wakeup missing account=" + account);
else { else {
EntityLog.log(this, "### waking up account=" + account); EntityLog.log(this, "### waking up account=" + account);
ok = state.release(); if (!state.release())
} Log.e("Wakeup failed account=" + account);
if (!ok) {
Log.e("Wakeup failed account=" + account);
reload(this, account, false, "wakeup failed");
} }
} }

Loading…
Cancel
Save