aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt b/app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt
index 520d750f..bf6e1329 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/services/DownloadService.kt
@@ -54,7 +54,7 @@ class DownloadService : IntentService("FrostVideoDownloader") {
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
if (intent != null && intent.flags == PendingIntent.FLAG_CANCEL_CURRENT) {
- L.i("Cancelling download service")
+ L.i { "Cancelling download service" }
cancelDownload()
return Service.START_NOT_STICKY
}
@@ -84,7 +84,7 @@ class DownloadService : IntentService("FrostVideoDownloader") {
client.newCall(request).execute().use { response ->
if (!response.isSuccessful) {
- L.e("Video download failed")
+ L.e { "Video download failed" }
toast("Video download failed")
return@use
}
@@ -107,7 +107,8 @@ class DownloadService : IntentService("FrostVideoDownloader") {
private fun getPendingIntent(context: Context, file: File): PendingIntent {
val uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file)
val type = context.contentResolver.getType(uri)
- L.i("DownloadType: retrieved pending intent - $uri $type")
+ L.i { "DownloadType: retrieved pending intent" }
+ L._i { "Contents: $uri $type" }
val intent = Intent(Intent.ACTION_VIEW, uri)
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.setDataAndType(uri, type)
@@ -119,7 +120,7 @@ class DownloadService : IntentService("FrostVideoDownloader") {
* Does not show the new notification
*/
private fun finishDownload(url: String) {
- L.i("Video download finished", url)
+ L.i { "Video download finished" }
downloaded.add(url)
notifBuilder.setContentTitle(string(R.string.downloaded_video))
.setProgress(0, 0, false).setOngoing(false).setAutoCancel(true)
@@ -132,7 +133,7 @@ class DownloadService : IntentService("FrostVideoDownloader") {
}
private fun onProgressUpdate(url: String, type: MediaType?, percentage: Float, done: Boolean) {
- L.v("Download request progress $percentage", url)
+ L.v { "Download request progress $percentage for $url" }
notifBuilder.setProgress(MAX_PROGRESS, (percentage * MAX_PROGRESS).toInt(), false)
if (done) finishDownload(url)
notifBuilder.show()