add log message when downloading file

This commit is contained in:
Colin Frei 2013-07-22 08:18:34 +02:00
parent 03315300c0
commit 8af6395c25

View file

@ -610,6 +610,8 @@ angular.module('podcasts.downloader', ['podcasts.settings', 'podcasts.database',
return;
}
console.log('downloading File for: ' + item.title);
$rootScope.$apply(
$http.get(item.audioUrl, {'responseType': 'blob'})
.success(function(data) {