Improved logging

This commit is contained in:
M66B 2021-01-21 15:36:17 +01:00
parent 174d482e75
commit 071df98e71
1 changed files with 3 additions and 1 deletions

View File

@ -375,8 +375,10 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
}
if (!runService && lastQuitId != lastEventId) {
EntityLog.log(ServiceSynchronize.this, "### quitting" +
" run=" + runService +
" startId=" + lastQuitId + "/" + lastEventId);
lastQuitId = lastEventId;
EntityLog.log(ServiceSynchronize.this, "### quitting startId=" + lastEventId);
quit(lastEventId);
}
}