mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 08:39:22 +01:00
Use Log.tag where appropriate.
This commit is contained in:
committed by
Alex Hart
parent
2144dc3b67
commit
b053fbc4a7
@@ -18,7 +18,7 @@ import okhttp3.OkHttpClient;
|
||||
|
||||
class ChunkedImageUrlFetcher implements DataFetcher<InputStream> {
|
||||
|
||||
private static final String TAG = ChunkedImageUrlFetcher.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(ChunkedImageUrlFetcher.class);
|
||||
|
||||
private final OkHttpClient client;
|
||||
private final ChunkedImageUrl url;
|
||||
|
||||
@@ -8,6 +8,8 @@ import com.bumptech.glide.load.data.DataFetcher;
|
||||
import com.bumptech.glide.load.model.GlideUrl;
|
||||
import com.bumptech.glide.util.ContentLengthInputStream;
|
||||
|
||||
import org.signal.core.util.logging.Log;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.Map;
|
||||
@@ -22,7 +24,7 @@ import okhttp3.ResponseBody;
|
||||
*/
|
||||
class OkHttpStreamFetcher implements DataFetcher<InputStream> {
|
||||
|
||||
private static final String TAG = OkHttpStreamFetcher.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(OkHttpStreamFetcher.class);
|
||||
|
||||
private final OkHttpClient client;
|
||||
private final GlideUrl url;
|
||||
|
||||
@@ -19,7 +19,7 @@ import java.io.OutputStream;
|
||||
|
||||
public class EncryptedBitmapResourceEncoder extends EncryptedCoder implements ResourceEncoder<Bitmap> {
|
||||
|
||||
private static final String TAG = EncryptedBitmapResourceEncoder.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(EncryptedBitmapResourceEncoder.class);
|
||||
|
||||
private final byte[] secret;
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ import java.net.SocketException;
|
||||
|
||||
public class EncryptedCacheEncoder extends EncryptedCoder implements Encoder<InputStream> {
|
||||
|
||||
private static final String TAG = EncryptedCacheEncoder.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(EncryptedCacheEncoder.class);
|
||||
|
||||
private final byte[] secret;
|
||||
private final ArrayPool byteArrayPool;
|
||||
|
||||
@@ -18,7 +18,7 @@ import java.io.OutputStream;
|
||||
|
||||
public class EncryptedGifDrawableResourceEncoder extends EncryptedCoder implements ResourceEncoder<GifDrawable> {
|
||||
|
||||
private static final String TAG = EncryptedGifDrawableResourceEncoder.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(EncryptedGifDrawableResourceEncoder.class);
|
||||
|
||||
private final byte[] secret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user