Skip to content

Commit

Permalink
Use proper log tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Sep 19, 2022
1 parent 1b254ca commit db16155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2560,7 +2560,7 @@ private void handleDeliveryReceipt(@NonNull SignalServiceContent content,
@NonNull SignalServiceReceiptMessage message,
@NonNull Recipient senderRecipient)
{
log(TAG, "Processing delivery receipts. Sender: " + senderRecipient.getId() + ", Device: " + content.getSenderDevice() + ", Timestamps: " + Util.join(message.getTimestamps(), ", "));
log(content.getTimestamp(), "Processing delivery receipts. Sender: " + senderRecipient.getId() + ", Device: " + content.getSenderDevice() + ", Timestamps: " + Util.join(message.getTimestamps(), ", "));

List<SyncMessageId> ids = Stream.of(message.getTimestamps())
.map(t -> new SyncMessageId(senderRecipient.getId(), t))
Expand Down

0 comments on commit db16155

Please sign in to comment.