Dump association info in short string for device presence monitor
(syncing master branch with tm-dev) Bug: 234535045 Test: atest CtsCompanionDeviceManagerCoreTestCases:DumpSysTest Change-Id: I51675dac55d975b925db7b8d577b4d8593bfd261
This commit is contained in:
@@ -315,7 +315,7 @@ public class CompanionDevicePresenceMonitor implements AssociationStore.OnChange
|
||||
out.append("\n");
|
||||
for (int associationId : mConnectedBtDevices) {
|
||||
AssociationInfo a = mAssociationStore.getAssociationById(associationId);
|
||||
out.append(" ").append(a.toString()).append('\n');
|
||||
out.append(" ").append(a.toShortString()).append('\n');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -326,7 +326,7 @@ public class CompanionDevicePresenceMonitor implements AssociationStore.OnChange
|
||||
out.append("\n");
|
||||
for (int associationId : mNearbyBleDevices) {
|
||||
AssociationInfo a = mAssociationStore.getAssociationById(associationId);
|
||||
out.append(" ").append(a.toString()).append('\n');
|
||||
out.append(" ").append(a.toShortString()).append('\n');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -337,7 +337,7 @@ public class CompanionDevicePresenceMonitor implements AssociationStore.OnChange
|
||||
out.append("\n");
|
||||
for (int associationId : mReportedSelfManagedDevices) {
|
||||
AssociationInfo a = mAssociationStore.getAssociationById(associationId);
|
||||
out.append(" ").append(a.toString()).append('\n');
|
||||
out.append(" ").append(a.toShortString()).append('\n');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user