Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87401efc authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Dump association info in short string for device presence monitor"

parents 07dc9d26 a8e58689
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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');
            }
        }
    }