Use Log.tag where appropriate.

This commit is contained in:
Greyson Parrelli
2021-03-29 18:37:22 -04:00
committed by Alex Hart
parent 2144dc3b67
commit b053fbc4a7
251 changed files with 313 additions and 253 deletions

View File

@@ -7,6 +7,7 @@ import android.telephony.SmsMessage;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import org.signal.core.util.logging.Log;
import org.thoughtcrime.securesms.groups.GroupId;
import org.thoughtcrime.securesms.recipients.RecipientId;
import org.whispersystems.libsignal.util.guava.Optional;
@@ -27,7 +28,7 @@ public class IncomingTextMessage implements Parcelable {
return new IncomingTextMessage[size];
}
};
private static final String TAG = IncomingTextMessage.class.getSimpleName();
private static final String TAG = Log.tag(IncomingTextMessage.class);
private final String message;
private final RecipientId sender;

View File

@@ -84,7 +84,7 @@ import java.util.List;
public class MessageSender {
private static final String TAG = MessageSender.class.getSimpleName();
private static final String TAG = Log.tag(MessageSender.class);
/**
* Suitable for a 1:1 conversation or a GV1 group only.