Added logging

This commit is contained in:
M66B 2021-06-19 18:03:37 +02:00
parent d87da744e8
commit 3baa60dc3e
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class ReceiverAutoStart extends BroadcastReceiver {
if (ACTION_EXACT.equals(action) || if (ACTION_EXACT.equals(action) ||
Intent.ACTION_BOOT_COMPLETED.equals(action) || Intent.ACTION_BOOT_COMPLETED.equals(action) ||
Intent.ACTION_MY_PACKAGE_REPLACED.equals(action)) { Intent.ACTION_MY_PACKAGE_REPLACED.equals(action)) {
Log.i("Received " + intent); EntityLog.log(context, "Received " + intent);
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(action)) if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(action))
ApplicationEx.upgrade(context); ApplicationEx.upgrade(context);