From 422c24bd68eec9364d70efec887b39c05a39c945 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sun, 2 Dec 2018 22:52:23 -0500 Subject: [PATCH] Remove debug loggin in GeneralReceiver --- .../java/com/topjohnwu/magisk/receivers/GeneralReceiver.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/full/java/com/topjohnwu/magisk/receivers/GeneralReceiver.java b/app/src/full/java/com/topjohnwu/magisk/receivers/GeneralReceiver.java index 1a9329227..d1cbfde46 100644 --- a/app/src/full/java/com/topjohnwu/magisk/receivers/GeneralReceiver.java +++ b/app/src/full/java/com/topjohnwu/magisk/receivers/GeneralReceiver.java @@ -10,7 +10,6 @@ import com.topjohnwu.magisk.MagiskManager; import com.topjohnwu.magisk.SuRequestActivity; import com.topjohnwu.magisk.services.OnBootService; import com.topjohnwu.magisk.utils.DlInstallManager; -import com.topjohnwu.magisk.utils.Logger; import com.topjohnwu.magisk.utils.SuConnector; import com.topjohnwu.superuser.Shell; @@ -28,7 +27,6 @@ public class GeneralReceiver extends BroadcastReceiver { String action = intent.getAction(); if (action == null) return; - Logger.debug(action); switch (action) { case Intent.ACTION_BOOT_COMPLETED: String bootAction = intent.getStringExtra("action");