aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2012-10-17 19:34:00 -0700
committerScott Jackson <daneren2005@gmail.com>2012-10-17 19:34:00 -0700
commit1eb9006c8eaa55ea43f5fba68c61427674be733f (patch)
treefd2c64bb7ce6593d501fa83c3821f53092283c3e /subsonic-android/src
parentcb91f020ed26ffa1b096db5c24ce48f53e461b01 (diff)
downloaddsub-1eb9006c8eaa55ea43f5fba68c61427674be733f.tar.gz
dsub-1eb9006c8eaa55ea43f5fba68c61427674be733f.tar.bz2
dsub-1eb9006c8eaa55ea43f5fba68c61427674be733f.zip
Forgot these log.d's
Diffstat (limited to 'subsonic-android/src')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java18
1 files changed, 8 insertions, 10 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
index ac989a68..aaa8c39c 100644
--- a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
+++ b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java
@@ -843,15 +843,15 @@ public class DownloadServiceImpl extends Service implements DownloadService {
}
}
- @Override
- public void setSleepTimerDuration(int duration){
- timerDuration = duration;
- }
+ @Override
+ public void setSleepTimerDuration(int duration){
+ timerDuration = duration;
+ }
- @Override
- public void setSleepTimerStatus(int status){
- timerStatus = status;
- }
+ @Override
+ public void setSleepTimerStatus(int status){
+ timerStatus = status;
+ }
@Override
public void startSleepTimer(){
@@ -886,7 +886,6 @@ public class DownloadServiceImpl extends Service implements DownloadService {
}
protected synchronized void checkDownloads() {
- Log.d(TAG, "Start");
if (!Util.isExternalStoragePresent() || !lifecycleSupport.isExternalStorageAvailable()) {
return;
}
@@ -902,7 +901,6 @@ public class DownloadServiceImpl extends Service implements DownloadService {
if (downloadList.isEmpty() && backgroundDownloadList.isEmpty()) {
return;
}
- Log.d(TAG, "Past Check");
// Need to download current playing?
if (currentPlaying != null && currentPlaying != currentDownloading && !currentPlaying.isCompleteFileAvailable()) {