Added logging statements
This commit is contained in:
parent
9d2a8a7750
commit
168d48cd02
|
@ -76,6 +76,11 @@ public abstract class BitmapDecodeWorkerTask extends Thread {
|
||||||
if (AppConfig.DEBUG)
|
if (AppConfig.DEBUG)
|
||||||
Log.d(TAG, "Finished loading bitmaps");
|
Log.d(TAG, "Finished loading bitmaps");
|
||||||
} else {
|
} else {
|
||||||
|
if (fileUrl == null) {
|
||||||
|
Log.w(TAG, "File URL is null");
|
||||||
|
} else {
|
||||||
|
Log.w(TAG, "File does not exist anymore.");
|
||||||
|
}
|
||||||
onInvalidFileUrl();
|
onInvalidFileUrl();
|
||||||
}
|
}
|
||||||
endBackgroundTask();
|
endBackgroundTask();
|
||||||
|
|
Loading…
Reference in New Issue