Improved logging

This commit is contained in:
M66B 2020-01-12 15:54:30 +01:00
parent f279a6c504
commit 3eb38a04ce
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ public class ServiceUI extends IntentService {
long interval = pollInterval * 60 * 1000L;
long next = now + interval - now % interval;
Log.i("Poll next=" + new Date(next));
EntityLog.log(context, "Poll next=" + new Date(next));
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, next, piSync);
}