aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005
diff options
context:
space:
mode:
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadFile.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadFile.java b/src/github/daneren2005/dsub/service/DownloadFile.java
index 40e11e9e..c2cffdef 100644
--- a/src/github/daneren2005/dsub/service/DownloadFile.java
+++ b/src/github/daneren2005/dsub/service/DownloadFile.java
@@ -217,7 +217,7 @@ public class DownloadFile {
completeWhenDone = false;
}
} catch(IOException ex) {
- Log.w(TAG, "Failed to rename file " + completeFile + " to " + saveFile);
+ Log.w(TAG, "Failed to rename file " + completeFile + " to " + saveFile, ex);
}
this.isPlaying = isPlaying;
@@ -226,7 +226,7 @@ public class DownloadFile {
try {
Util.renameFile(partialFile, completeFile);
} catch(IOException ex) {
- Log.w(TAG, "Failed to rename file " + partialFile + " to " + completeFile);
+ Log.w(TAG, "Failed to rename file " + partialFile + " to " + completeFile, ex);
}
}
public boolean getPlaying() {