Jonathan Hart
Committed by Brian O'Connor

Update IntentListCommand to show key

Change-Id: Ie7d4bc053e4ef1a681a0bca689fee88ea69eb63d
...@@ -78,8 +78,9 @@ public class IntentsListCommand extends AbstractShellCommand { ...@@ -78,8 +78,9 @@ public class IntentsListCommand extends AbstractShellCommand {
78 for (Intent intent : service.getIntents()) { 78 for (Intent intent : service.getIntents()) {
79 IntentState state = service.getIntentState(intent.key()); 79 IntentState state = service.getIntentState(intent.key());
80 if (state != null) { 80 if (state != null) {
81 - print("id=%s, state=%s, type=%s, appId=%s", 81 + print("id=%s, state=%s, key=%s, type=%s, appId=%s",
82 - intent.id(), state, intent.getClass().getSimpleName(), 82 + intent.id(), state, intent.key(),
83 + intent.getClass().getSimpleName(),
83 intent.appId().name()); 84 intent.appId().name());
84 printDetails(service, intent); 85 printDetails(service, intent);
85 } 86 }
......