summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-11 13:41:38 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-11 13:41:38 +0200
commit168d48cd02f14af2a860183785ba4df947910e84 (patch)
tree16e0f200626aa849702a66df900619f631f25d61
parent9d2a8a7750b5849d16e4bc0556ab482b47c004fd (diff)
downloadAntennaPod-168d48cd02f14af2a860183785ba4df947910e84.zip
Added logging statements
-rw-r--r--src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java b/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
index 0174e0471..10d4d716e 100644
--- a/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
+++ b/src/de/danoeh/antennapod/asynctask/BitmapDecodeWorkerTask.java
@@ -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();