mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 16:49:40 +01:00
Use Log.tag where appropriate.
This commit is contained in:
committed by
Alex Hart
parent
2144dc3b67
commit
b053fbc4a7
@@ -23,7 +23,7 @@ import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
||||
@RequiresApi(26)
|
||||
public class FcmJobService extends JobService {
|
||||
|
||||
private static final String TAG = FcmJobService.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(FcmJobService.class);
|
||||
|
||||
private static final int ID = 1337;
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ import java.util.Locale;
|
||||
|
||||
public class FcmReceiveService extends FirebaseMessagingService {
|
||||
|
||||
private static final String TAG = FcmReceiveService.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(FcmReceiveService.class);
|
||||
|
||||
|
||||
@Override
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public final class FcmUtil {
|
||||
|
||||
private static final String TAG = FcmUtil.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(FcmUtil.class);
|
||||
|
||||
/**
|
||||
* Retrieves the current FCM token. If one isn't available, it'll be generated.
|
||||
|
||||
Reference in New Issue
Block a user