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)
|
||||
Log.d(TAG, "Finished loading bitmaps");
|
||||
} else {
|
||||
if (fileUrl == null) {
|
||||
Log.w(TAG, "File URL is null");
|
||||
} else {
|
||||
Log.w(TAG, "File does not exist anymore.");
|
||||
}
|
||||
onInvalidFileUrl();
|
||||
}
|
||||
endBackgroundTask();
|
||||
|
|
Loading…
Reference in New Issue