Clean up usage of FileLog, and some logging related to B&R

Bug: 378684472
Test: N/A just logs
Flag: EXEMPT just logs
Change-Id: Ie2de7b700862b1439adc0c44d684b3864469014a
This commit is contained in:
Charlie Anderson
2024-11-12 11:37:38 -05:00
parent a2603e829a
commit 859c793b6b
4 changed files with 35 additions and 30 deletions

View File

@@ -303,10 +303,11 @@ public class SecondaryDropTarget extends ButtonDropTarget implements OnAlarmList
.setData(Uri.fromParts("package", cn.getPackageName(), cn.getClassName()))
.putExtra(Intent.EXTRA_USER, info.user);
context.startActivity(i);
FileLog.d(TAG, "start uninstall activity " + cn.getPackageName());
FileLog.d(TAG, "start uninstall activity from drop target " + cn.getPackageName());
return cn;
} catch (URISyntaxException e) {
Log.e(TAG, "Failed to parse intent to start uninstall activity for item=" + info);
Log.e(TAG, "Failed to parse intent to start drop target uninstall activity for"
+ " item=" + info);
return null;
}
}