Skip to content

Commit

Permalink
Reduce recipient dirty state logging verbosity.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal authored and alex-signal committed May 14, 2020
1 parent 53d122e commit d3d53e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,7 @@ public void clearDirtyState(@NonNull List<RecipientId> recipients) {
}

void markDirty(@NonNull RecipientId recipientId, @NonNull DirtyState dirtyState) {
Log.d(TAG, "Attempting to mark " + recipientId + " with dirty state " + dirtyState, new Throwable());
Log.d(TAG, "Attempting to mark " + recipientId + " with dirty state " + dirtyState);

ContentValues contentValues = new ContentValues(1);
contentValues.put(DIRTY, dirtyState.getId());
Expand Down

0 comments on commit d3d53e6

Please sign in to comment.