Reduce recipient dirty state logging verbosity.

This commit is contained in:
Greyson Parrelli 2020-05-12 12:46:37 -04:00 committed by Alex Hart
parent 53d122ed55
commit d3d53e6099

View file

@ -1532,7 +1532,7 @@ public class RecipientDatabase extends Database {
}
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());