Loading services/core/java/com/android/server/wm/BackgroundActivityStartController.java +15 −7 Original line number Diff line number Diff line Loading @@ -356,16 +356,24 @@ public class BackgroundActivityStartController { public String toString() { StringBuilder builder = new StringBuilder(); builder.append(". BAL Code: "); builder.append(balCodeToString(mCode)); if (DEBUG_ACTIVITY_STARTS) { builder.append(" "); if (mBackground) { builder.append("Background "); } builder.append("Activity start allowed: " + mMessage + "."); builder.append("BAL Code: "); builder.append(balCodeToString(mCode)); builder.append("Activity start "); if (mCode == BAL_BLOCK) { builder.append("denied"); } else { builder.append("allowed: ").append(mMessage); } if (mProcessInfo != null) { builder.append(" "); builder.append(mProcessInfo); } } return builder.toString(); } Loading Loading
services/core/java/com/android/server/wm/BackgroundActivityStartController.java +15 −7 Original line number Diff line number Diff line Loading @@ -356,16 +356,24 @@ public class BackgroundActivityStartController { public String toString() { StringBuilder builder = new StringBuilder(); builder.append(". BAL Code: "); builder.append(balCodeToString(mCode)); if (DEBUG_ACTIVITY_STARTS) { builder.append(" "); if (mBackground) { builder.append("Background "); } builder.append("Activity start allowed: " + mMessage + "."); builder.append("BAL Code: "); builder.append(balCodeToString(mCode)); builder.append("Activity start "); if (mCode == BAL_BLOCK) { builder.append("denied"); } else { builder.append("allowed: ").append(mMessage); } if (mProcessInfo != null) { builder.append(" "); builder.append(mProcessInfo); } } return builder.toString(); } Loading